blob: edc79c030f561e906eae0833f5197a252ead0fff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// 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;
}
} // namespace Slang
|