Home
last modified time | relevance | path

Searched refs:TSObjectKeyword (Results 1 – 17 of 17) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/ir/ts/
DtsObjectKeyword.cpp25 void TSObjectKeyword::TransformChildren([[maybe_unused]] const NodeTransformer &cb, in TransformChildren()
30 void TSObjectKeyword::Iterate([[maybe_unused]] const NodeTraverser &cb) const {} in Iterate()
32 void TSObjectKeyword::Dump(ir::AstDumper *dumper) const in Dump()
37 void TSObjectKeyword::Dump(ir::SrcDumper *dumper) const in Dump()
42 void TSObjectKeyword::Compile([[maybe_unused]] compiler::PandaGen *pg) const in Compile()
47 void TSObjectKeyword::Compile([[maybe_unused]] compiler::ETSGen *etsg) const in Compile()
52 checker::Type *TSObjectKeyword::Check([[maybe_unused]] checker::TSChecker *checker) in Check()
57 checker::Type *TSObjectKeyword::GetType([[maybe_unused]] checker::TSChecker *checker) in GetType()
62 checker::Type *TSObjectKeyword::Check([[maybe_unused]] checker::ETSChecker *checker) in Check()
DtsObjectKeyword.h22 class TSObjectKeyword : public TypeNode {
24 explicit TSObjectKeyword() : TypeNode(AstNodeType::TS_OBJECT_KEYWORD) {} in TSObjectKeyword() function
/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsObjectKeyword.cpp23 void TSObjectKeyword::Iterate([[maybe_unused]] const NodeTraverser &cb) const {} in Iterate()
25 void TSObjectKeyword::Dump(ir::AstDumper *dumper) const in Dump()
30 void TSObjectKeyword::Compile([[maybe_unused]] compiler::PandaGen *pg) const {} in Compile()
32 checker::Type *TSObjectKeyword::Check([[maybe_unused]] checker::Checker *checker) const in Check()
37 checker::Type *TSObjectKeyword::GetType(checker::Checker *checker) const in GetType()
42 void TSObjectKeyword::UpdateSelf([[maybe_unused]] const NodeUpdater &cb, [[maybe_unused]] binder::B… in UpdateSelf()
DtsObjectKeyword.h32 class TSObjectKeyword : public TypeNode {
34 explicit TSObjectKeyword() : TypeNode(AstNodeType::TS_OBJECT_KEYWORD) {} in TSObjectKeyword() function
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest_infer-type-with-extends3-expected.txt458 "type": "TSObjectKeyword",
501 "type": "TSObjectKeyword",
1868 "type": "TSObjectKeyword",
1911 "type": "TSObjectKeyword",
3278 "type": "TSObjectKeyword",
3321 "type": "TSObjectKeyword",
Dtest_infer-type-with-extends1-expected.txt733 "type": "TSObjectKeyword",
1686 "type": "TSObjectKeyword",
2682 "type": "TSObjectKeyword",
3855 "type": "TSObjectKeyword",
Dtest_infer-type-with-extends2-expected.txt1882 "type": "TSObjectKeyword",
Dtest-type-annotation-expected.txt583 "type": "TSObjectKeyword",
/arkcompiler/ets_frontend/es2panda/ir/
DastNodeMapping.h90 _(TS_OBJECT_KEYWORD, TSObjectKeyword) \
/arkcompiler/ets_frontend/ets2panda/ir/
DastNodeMapping.h113 _(TS_OBJECT_KEYWORD, TSObjectKeyword) \
/arkcompiler/ets_frontend/ets2panda/checker/
DETSAnalyzerUnreachable.cpp323 checker::Type *ETSAnalyzer::Check([[maybe_unused]] ir::TSObjectKeyword *node) const in Check()
DTSAnalyzerUnreachable.cpp353 checker::Type *TSAnalyzer::Check([[maybe_unused]] ir::TSObjectKeyword *node) const in Check()
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DJSCompilerUnreachable.cpp392 void JSCompiler::Compile([[maybe_unused]] const ir::TSObjectKeyword *node) const in Compile()
DETSCompilerUnrechable.cpp397 void ETSCompiler::Compile([[maybe_unused]] const ir::TSObjectKeyword *node) const in Compile()
/arkcompiler/ets_frontend/ets2panda/test/parser/ts/
Dtest-type-annotation-expected.txt593 "type": "TSObjectKeyword",
/arkcompiler/ets_frontend/ets2panda/parser/
DTSparser.cpp1110 return parser->AllocNode<ir::TSObjectKeyword>(); in GetTypeAnnotation()
/arkcompiler/ets_frontend/es2panda/parser/
DparserImpl.cpp2062 typeAnnotation = AllocNode<ir::TSObjectKeyword>(); in ParseTsBasicType()