/arkcompiler/ets_frontend/ets2panda/util/ast-builders/ |
H A D | tsAsExpressionBuilder.h | 43 isConst_ = isConst; in SetIsCOnst() 49 auto node = AllocNode(expression_, typeAnnotation_, isConst_); in Build() 56 bool isConst_ = false; member in ark::es2panda::ir::TSAsExpressionBuilder
|
H A D | tsEnumDeclarationBuilder.h | 58 isConst_ = isConst; in SetIsConst() 65 ir::TSEnumDeclaration::ConstructorFlags {isConst_, isStatic_, isDeclare_}); in Build() 72 bool isConst_ = false; member in ark::es2panda::ir::TSEnumDeclarationBuilder
|
/arkcompiler/ets_frontend/es2panda/ir/ts/ |
H A D | tsAsExpression.h | 39 isConst_(isConst) in TSAsExpression() 60 return isConst_; in IsConst() 72 bool isConst_; member in panda::es2panda::panda::es2panda::panda::es2panda::ir::TSAsExpression
|
H A D | tsEnumDeclaration.h | 51 isConst_(isConst) in TSEnumDeclaration() 82 return isConst_; in IsConst() 101 bool isConst_; member in panda::es2panda::panda::es2panda::panda::es2panda::panda::es2panda::ir::TSEnumDeclaration
|
H A D | tsAsExpression.cpp | 84 if (isConst_) { in Check()
|
H A D | tsEnumDeclaration.cpp | 44 dumper->Add({{"type", "TSEnumDeclaration"}, {"id", key_}, {"members", members_}, {"const", isConst_}}); in Dump() 398 checker::Type *enumType = InferType(checker, isConst_); in Check()
|
/arkcompiler/ets_frontend/ets2panda/ir/ts/ |
H A D | tsAsExpression.h | 39 : AnnotatedExpression(AstNodeType::TS_AS_EXPRESSION, typeAnnotation), expression_(expression), isConst_(isConst) in TSAsExpression() 56 return isConst_; 83 bool isConst_; member in ark::es2panda::ark::es2panda::ark::es2panda::ir::TSAsExpression
|
H A D | tsEnumDeclaration.h | 46 isConst_(flags.isConst), in TSEnumDeclaration() 115 return isConst_; in IsConst() 166 bool isConst_; member in ark::es2panda::ark::es2panda::ir::TSEnumDeclaration
|
H A D | tsEnumDeclaration.cpp | 67 {"const", isConst_}}); in Dump() 72 ASSERT(isConst_ == false); in Dump()
|
H A D | tsAsExpression.cpp | 101 if (auto *const clone = allocator->New<TSAsExpression>(expression, typeAnnotation, isConst_); clone != nullptr) { in Clone()
|
/arkcompiler/ets_frontend/es2panda/binder/ |
H A D | declaration.h | 168 : MultiDecl(allocator, name), isExport_(isExport), isConst_(isConst) {} in EnumLiteralDecl() 182 return isConst_; in IsConst() 198 bool isConst_ {};
|
/arkcompiler/ets_frontend/ets2panda/varbinder/ |
H A D | declaration.h | 136 explicit EnumLiteralDecl(util::StringView name, bool isConst) : Decl(name), isConst_(isConst) {} in EnumLiteralDecl() 138 : Decl(name, declNode), isConst_(isConst) in EnumLiteralDecl() 149 return isConst_; in IsConst() 164 bool isConst_ {};
|