/arkcompiler/ets_frontend/es2panda/ir/ts/ |
D | tsInterfaceBody.h | 34 explicit TSInterfaceBody(ArenaVector<Expression *> &&body) in TSInterfaceBody()
|
D | tsInterfaceDeclaration.h | 45 … TSInterfaceBody *body, ArenaVector<TSInterfaceHeritage *> &&extends) in TSInterfaceDeclaration()
|
/arkcompiler/ets_frontend/ets2panda/ir/ts/ |
D | tsInterfaceBody.h | 24 explicit TSInterfaceBody(ArenaVector<AstNode *> &&body) in TSInterfaceBody()
|
D | tsModuleDeclaration.h | 27 …explicit TSModuleDeclaration(ArenaAllocator *allocator, Expression *name, Statement *body, bool de… in TSModuleDeclaration()
|
D | tsInterfaceDeclaration.h | 36 … TSInterfaceBody *body, ArenaVector<TSInterfaceHeritage *> &&extends, bool isStatic, in TSInterfaceDeclaration()
|
/arkcompiler/ets_frontend/es2panda/ir/statements/ |
D | labelledStatement.h | 37 explicit LabelledStatement(Identifier *ident, Statement *body) in LabelledStatement()
|
D | doWhileStatement.h | 40 explicit DoWhileStatement(binder::LoopScope *scope, Statement *body, Expression *test) in DoWhileStatement()
|
D | whileStatement.h | 40 explicit WhileStatement(binder::LoopScope *scope, Expression *test, Statement *body) in WhileStatement()
|
D | forInStatement.h | 40 …xplicit ForInStatement(binder::LoopScope *scope, AstNode *left, Expression *right, Statement *body) in ForInStatement()
|
D | forOfStatement.h | 40 …tatement(binder::LoopScope *scope, AstNode *left, Expression *right, Statement *body, bool isAwait) in ForOfStatement()
|
D | forUpdateStatement.h | 41 Statement *body) in ForUpdateStatement()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/be/ |
D | try_catch.h | 127 TryCatchBlocksLower(MemPool &memPool, BlockNode &body, MIRModule &mirModule) in TryCatchBlocksLower() 153 BlockNode &body; variable
|
/arkcompiler/ets_frontend/ets2panda/checker/ets/ |
D | enum.cpp | 141 ArenaVector<ir::Statement *> &&body, in MakeFunction() 336 ArenaVector<ir::Statement *> body(Allocator()->Adapter()); in CreateEnumFromIntMethod() local 372 ArenaVector<ir::Statement *> body(Allocator()->Adapter()); in CreateEnumToStringMethod() local 410 ArenaVector<ir::Statement *> body(Allocator()->Adapter()); in CreateEnumGetValueMethod() local 447 ArenaVector<ir::Statement *> body(Allocator()->Adapter()); in CreateEnumGetNameMethod() local 570 ArenaVector<ir::Statement *> body(Allocator()->Adapter()); in CreateEnumValueOfMethod() local 603 ArenaVector<ir::Statement *> body(Allocator()->Adapter()); in CreateEnumValuesMethod() local
|
/arkcompiler/ets_frontend/ets2panda/ir/base/ |
D | scriptFunction.h | 45 …explicit ScriptFunction(FunctionSignature &&signature, AstNode *body, ir::ScriptFunctionFlags func… in ScriptFunction() 56 …explicit ScriptFunction(FunctionSignature &&signature, AstNode *body, ir::ScriptFunctionFlags func… in ScriptFunction() 117 void SetBody(AstNode *body) noexcept in SetBody()
|
D | catchClause.h | 28 explicit CatchClause(Expression *param, BlockStatement *body) in CatchClause()
|
/arkcompiler/ets_frontend/ets2panda/ir/statements/ |
D | labelledStatement.h | 31 explicit LabelledStatement(Identifier *ident, Statement *body) in LabelledStatement()
|
D | whileStatement.h | 30 explicit WhileStatement(Expression *test, Statement *body) in WhileStatement()
|
D | doWhileStatement.h | 30 explicit DoWhileStatement(Statement *body, Expression *test) in DoWhileStatement()
|
D | forInStatement.h | 30 explicit ForInStatement(AstNode *left, Expression *right, Statement *body) in ForInStatement()
|
D | forOfStatement.h | 30 explicit ForOfStatement(AstNode *left, Expression *right, Statement *body, bool isAwait) in ForOfStatement()
|
D | forUpdateStatement.h | 30 … explicit ForUpdateStatement(AstNode *init, Expression *test, Expression *update, Statement *body) in ForUpdateStatement()
|
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/ |
D | promiseVoid.cpp | 35 …ockStatement *HandleAsyncScriptFunctionBody(checker::ETSChecker *checker, ir::BlockStatement *body) in HandleAsyncScriptFunctionBody() 143 const auto &body = function->Body(); in Perform() local 197 auto checkFunctionBody = [](const ir::BlockStatement *body) -> bool { in Postcondition()
|
/arkcompiler/ets_frontend/es2panda/ir/base/ |
D | catchClause.h | 41 explicit CatchClause(binder::CatchScope *scope, Expression *param, BlockStatement *body) in CatchClause()
|
/arkcompiler/ets_frontend/ets2panda/checker/types/ets/ |
D | etsFunctionType.cpp | 212 auto *body = targetType->GetDeclNode()->AsTSInterfaceDeclaration()->Body(); in CastFunctionParams() local 231 … auto *body = targetType->GetDeclNode()->AsTSInterfaceDeclaration()->Body()->AsTSInterfaceBody(); in Cast() local
|
/arkcompiler/ets_frontend/ets2panda/test/unit/lowerings/ |
D | scopes_initialization.cpp | 57 static ir::Identifier *BodyToFirstName(ir::Statement *body) in BodyToFirstName()
|