Home
last modified time | relevance | path

Searched refs:TSModuleBlock (Results 1 – 22 of 22) sorted by relevance

/arkcompiler/ets_frontend/es2panda/ir/ts/
DtsModuleBlock.cpp23 void TSModuleBlock::Iterate(const NodeTraverser &cb) const in Iterate()
30 void TSModuleBlock::Dump(ir::AstDumper *dumper) const in Dump()
35 void TSModuleBlock::Compile([[maybe_unused]] compiler::PandaGen *pg) const {} in Compile()
37 checker::Type *TSModuleBlock::Check([[maybe_unused]] checker::Checker *checker) const in Check()
42 void TSModuleBlock::UpdateSelf(const NodeUpdater &cb, [[maybe_unused]] binder::Binder *binder) in UpdateSelf()
47 void TSModuleBlock::AddStatementInFront(Statement *statement) in AddStatementInFront()
DtsModuleBlock.h32 class TSModuleBlock : public Statement {
34 explicit TSModuleBlock(ArenaVector<Statement *> &&statements) in TSModuleBlock() function
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest_module-expected.txt21 "type": "TSModuleBlock",
307 "type": "TSModuleBlock",
485 "type": "TSModuleBlock",
689 "type": "TSModuleBlock",
877 "type": "TSModuleBlock",
933 "type": "TSModuleBlock",
1064 "type": "TSModuleBlock",
1259 "type": "TSModuleBlock",
1465 "type": "TSModuleBlock",
1555 "type": "TSModuleBlock",
[all …]
Dtest-export-declaration3-expected.txt21 "type": "TSModuleBlock",
40 "type": "TSModuleBlock",
167 "type": "TSModuleBlock",
Dtest_export-declaration-named-namespace-expected.txt21 "type": "TSModuleBlock",
392 "type": "TSModuleBlock",
523 "type": "TSModuleBlock",
624 "type": "TSModuleBlock",
727 "type": "TSModuleBlock",
Dtest_module8-expected.txt37 "type": "TSModuleBlock",
Dtest-keyword-identify5-expected.txt420 "type": "TSModuleBlock",
463 "type": "TSModuleBlock",
Dtest_module_binder-expected.txt21 "type": "TSModuleBlock",
Dtest-export-declaration2-expected.txt78 "type": "TSModuleBlock",
Dtest-cyclic-module-import-expected.txt21 "type": "TSModuleBlock",
411 "type": "TSModuleBlock",
Dtest-keyword-identify1-expected.txt284 "type": "TSModuleBlock",
Dtest-keyword-identify4-expected.txt231 "type": "TSModuleBlock",
Dtest-keyword-identify2-expected.txt352 "type": "TSModuleBlock",
Dtest-type-with-specieal-constructor-expected.txt186 "type": "TSModuleBlock",
Dtest-class-definiton24-expected.txt21 "type": "TSModuleBlock",
Dtest-keyword-identify9-expected.txt143 "type": "TSModuleBlock",
Dtest-class-definiton23-expected.txt525 "type": "TSModuleBlock",
Dtest-class-definiton25-expected.txt525 "type": "TSModuleBlock",
/arkcompiler/ets_frontend/es2panda/test/parser/script/
Dtest-ts-importEqual1-expected.txt21 "type": "TSModuleBlock",
/arkcompiler/ets_frontend/es2panda/ir/
DastNodeMapping.h107 _(TS_MODULE_BLOCK, TSModuleBlock) \
/arkcompiler/ets_frontend/es2panda/parser/
DparserImpl.h110 class TSModuleBlock; variable
479 ir::TSModuleBlock *ParseTsModuleBlock();
DstatementParser.cpp523 ir::TSModuleBlock *ParserImpl::ParseTsModuleBlock() in ParseTsModuleBlock()
537 auto *blockNode = AllocNode<ir::TSModuleBlock>(std::move(statements)); in ParseTsModuleBlock()