blob: 2df9164fbebc4a30fd5cc1835ae507329687a922 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// slang-ast-decl.cpp
#include "slang-ast-builder.h"
#include <assert.h>
#include "slang-generated-ast-macro.h"
namespace Slang {
const TypeExp& TypeConstraintDecl::getSup() const
{
SLANG_AST_NODE_CONST_VIRTUAL_CALL(TypeConstraintDecl, getSup, ())
}
const TypeExp& TypeConstraintDecl::_getSupOverride() const
{
SLANG_UNEXPECTED("TypeConstraintDecl::_getSupOverride not overridden");
//return TypeExp::empty;
}
bool isInterfaceRequirement(Decl* decl)
{
auto ancestor = decl->parentDecl;
for (; ancestor; ancestor = ancestor->parentDecl)
{
if (as<InterfaceDecl>(ancestor))
return true;
if (as<ExtensionDecl>(ancestor))
return false;
}
return false;
}
} // namespace Slang
|