Home
last modified time | relevance | path

Searched refs:TaggedLiteral (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_frontend/es2panda/ir/expressions/literals/
DtaggedLiteral.cpp23 void TaggedLiteral::Iterate([[maybe_unused]] const NodeTraverser &cb) const {} in Iterate()
25 void TaggedLiteral::Dump(ir::AstDumper *dumper) const in Dump()
30 void TaggedLiteral::Compile([[maybe_unused]] compiler::PandaGen *pg) const in Compile()
35 checker::Type *TaggedLiteral::Check([[maybe_unused]] checker::Checker *checker) const in Check()
40 void TaggedLiteral::UpdateSelf([[maybe_unused]] const NodeUpdater &cb, [[maybe_unused]] binder::Bin… in UpdateSelf()
DtaggedLiteral.h32 class TaggedLiteral : public Literal {
34 explicit TaggedLiteral(LiteralTag tag) : Literal(AstNodeType::TAGGED_LITERAL), tag_(tag) {} in TaggedLiteral() function
35 explicit TaggedLiteral(LiteralTag tag, util::StringView str) in TaggedLiteral() function
40 explicit TaggedLiteral(LiteralTag tag, uint16_t num) in TaggedLiteral() function
50 bool operator==(const TaggedLiteral &other) const
/arkcompiler/ets_frontend/es2panda/ir/base/
DclassDefinition.cpp198 value = pg->Allocator()->New<TaggedLiteral>(LiteralTag::METHOD, internalName); in CreateClassStaticProperties()
200 … Literal *methodAffiliate = pg->Allocator()->New<TaggedLiteral>(LiteralTag::METHODAFFILIATE, in CreateClassStaticProperties()
/arkcompiler/ets_frontend/es2panda/ir/expressions/
DobjectExpression.cpp250 return pg->Allocator()->New<TaggedLiteral>(LiteralTag::ACCESSOR); in CreateLiteral()
267 return pg->Allocator()->New<TaggedLiteral>(tag, method->Scope()->InternalName()); in CreateLiteral()
330 …Literal *methodAffiliate = pg->Allocator()->New<TaggedLiteral>(LiteralTag::METHODAFFILIATE, paramN… in CompileStaticProperties()
/arkcompiler/ets_frontend/es2panda/ir/
DastNodeMapping.h135 _(TAGGED_LITERAL, TaggedLiteral) \