/arkcompiler/ets_frontend/ets2panda/ir/ts/ |
H A D | tsParameterProperty.cpp | 26 void TSParameterProperty::TransformChildren(const NodeTransformer &cb, std::string_view transformationName) in TransformChildren() 34 void TSParameterProperty::Iterate(const NodeTraverser &cb) const in Iterate() 39 void TSParameterProperty::Dump(ir::AstDumper *dumper) const in Dump() 41 dumper->Add({{"type", "TSParameterProperty"}, in Dump() 52 void TSParameterProperty::Dump(ir::SrcDumper *dumper) const in Dump() 54 dumper->Add("TSParameterProperty"); in Dump() 57 void TSParameterProperty::Compile([[maybe_unused]] compiler::PandaGen *pg) const in Compile() 61 void TSParameterProperty::Compile(compiler::ETSGen *etsg) const in Compile() 66 checker::Type *TSParameterProperty::Check([[maybe_unused]] checker::TSChecker *checker) in Check() 71 checker::Type *TSParameterProperty [all...] |
H A D | tsParameterProperty.h | 25 class TSParameterProperty : public Expression { class 27 explicit TSParameterProperty(AccessibilityOption accessibility, Expression *parameter, bool readonly, bool isStatic, in TSParameterProperty() function in ark::es2panda::ir::TSParameterProperty
|
/arkcompiler/ets_frontend/es2panda/ir/ts/ |
H A D | tsParameterProperty.cpp | 22 void TSParameterProperty::Iterate(const NodeTraverser &cb) const in Iterate() 27 void TSParameterProperty::Dump(ir::AstDumper *dumper) const in Dump() 30 {{"type", "TSParameterProperty"}, in Dump() 43 void TSParameterProperty::Compile(compiler::PandaGen *pg) const in Compile() 48 checker::Type *TSParameterProperty::Check([[maybe_unused]] checker::Checker *checker) const in Check() 53 void TSParameterProperty::UpdateSelf(const NodeUpdater &cb, [[maybe_unused]] binder::Binder *binder) in UpdateSelf()
|
H A D | tsParameterProperty.h | 34 class TSParameterProperty : public Expression { class 36 explicit TSParameterProperty(AccessibilityOption accessibility, Expression *parameter, bool readonly, in TSParameterProperty() function in panda::es2panda::panda::es2panda::panda::es2panda::ir::TSParameterProperty
|
/arkcompiler/ets_frontend/es2panda/ir/ |
H A D | astNodeMapping.h | 119 _(TS_PARAMETER_PROPERTY, TSParameterProperty) \
|
/arkcompiler/ets_frontend/ets2panda/parser/ |
H A D | expressionTSParser.cpp | 249 ir::TSParameterProperty *TSParser::CreateParameterProperty(ir::Expression *parameter, ir::ModifierFlags modifiers) in CreateParameterProperty() 272 // NOTE(Csaba Repasi): Handle export property of TSParameterProperty in CreateParameterProperty() 274 return AllocNode<ir::TSParameterProperty>(accessibilityOption, parameter, readonly, isStatic, isExport); in CreateParameterProperty()
|
H A D | TSparser.h | 75 ir::TSParameterProperty *CreateParameterProperty(ir::Expression *parameter, ir::ModifierFlags modifiers);
|
/arkcompiler/ets_frontend/ets2panda/ir/ |
H A D | astNodeMapping.h | 141 _(TS_PARAMETER_PROPERTY, TSParameterProperty) \
|
/arkcompiler/ets_frontend/ets2panda/compiler/core/ |
H A D | JSCompilerUnreachable.cpp | 402 void JSCompiler::Compile([[maybe_unused]] const ir::TSParameterProperty *expr) const in Compile()
|
H A D | ETSCompilerUnrechable.cpp | 407 void ETSCompiler::Compile([[maybe_unused]] const ir::TSParameterProperty *expr) const in Compile()
|
/arkcompiler/ets_frontend/ets2panda/checker/ |
H A D | TSAnalyzerUnreachable.cpp | 363 checker::Type *TSAnalyzer::Check([[maybe_unused]] ir::TSParameterProperty *expr) const in Check()
|
H A D | ETSAnalyzerUnreachable.cpp | 328 checker::Type *ETSAnalyzer::Check([[maybe_unused]] ir::TSParameterProperty *expr) const in Check()
|
/arkcompiler/ets_frontend/es2panda/parser/ |
H A D | parserImpl.h | 103 class TSParameterProperty; 381 ir::TSParameterProperty *CreateTsParameterProperty(ir::Expression *parameter, ir::ModifierFlags modifiers);
|
H A D | parserImpl.cpp | 4138 ir::TSParameterProperty *ParserImpl::CreateTsParameterProperty(ir::Expression *parameter, ir::ModifierFlags modifiers) in CreateTsParameterProperty() 4166 return AllocNode<ir::TSParameterProperty>(accessibility, parameter, readonly, isOverride, isStatic, isExport); in CreateTsParameterProperty()
|