Searched refs:DummyNode (Results 1 - 9 of 9) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/ir/expressions/ |
H A D | dummyNode.cpp | 26 void DummyNode::TransformChildren([[maybe_unused]] const NodeTransformer &cb, in TransformChildren() 31 void DummyNode::Iterate([[maybe_unused]] const NodeTraverser &cb) const {} in Iterate() 33 void DummyNode::Dump(ir::AstDumper *dumper) const in Dump() 35 dumper->Add({{"type", "DummyNode"}, in Dump() 41 void DummyNode::Dump(ir::SrcDumper *dumper) const in Dump() 46 void DummyNode::Compile(compiler::PandaGen *pg) const in Compile() 51 void DummyNode::Compile(compiler::ETSGen *etsg) const in Compile() 56 checker::Type *DummyNode::Check(checker::TSChecker *checker) in Check() 61 checker::Type *DummyNode::Check(checker::ETSChecker *checker) in Check()
|
H A D | dummyNode.h | 37 class DummyNode : public AstNode { class 39 DummyNode() = delete; 40 ~DummyNode() override = default; 42 NO_COPY_SEMANTIC(DummyNode); 43 NO_MOVE_SEMANTIC(DummyNode); 46 explicit DummyNode(util::StringView const name, util::StringView indexName, TypeNode *returnType, in DummyNode() function in ark::es2panda::ir::ark::es2panda::ir::DummyNode 91 bool operator==(const DummyNode &node) const in operator ==()
|
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/ |
H A D | ambientLowering.cpp | 66 ir::MethodDefinition *CreateMethodFunctionDefinition(ir::DummyNode *node, public_lib::Context *ctx, in CreateMethodFunctionDefinition() 96 // Only one DummyNode is allowed in classBody for now in CreateIndexerMethodIfNeeded()
|
/arkcompiler/ets_frontend/ets2panda/ir/ |
H A D | astNodeMapping.h | 56 _(DUMMYNODE, DummyNode) \
|
/arkcompiler/ets_frontend/ets2panda/compiler/core/ |
H A D | JSCompilerUnreachable.cpp | 502 void JSCompiler::Compile([[maybe_unused]] const ir::DummyNode *node) const in Compile()
|
H A D | ETSCompilerUnrechable.cpp | 502 void ETSCompiler::Compile([[maybe_unused]] const ir::DummyNode *node) const in Compile()
|
/arkcompiler/ets_frontend/ets2panda/checker/ |
H A D | TSAnalyzerUnreachable.cpp | 403 checker::Type *TSAnalyzer::Check([[maybe_unused]] ir::DummyNode *node) const in Check()
|
H A D | ETSAnalyzerUnreachable.cpp | 418 checker::Type *ETSAnalyzer::Check([[maybe_unused]] ir::DummyNode *expr) const in Check()
|
/arkcompiler/ets_frontend/ets2panda/parser/ |
H A D | ETSparser.cpp | 1745 auto dummyNode = AllocNode<ir::DummyNode>(compiler::Signatures::AMBIENT_INDEXER, indexName, returnType, in ParseAmbientSignature()
|
Completed in 9 milliseconds