Home
last modified time | relevance | path

Searched defs:argument (Results 1 - 25 of 38) sorted by relevance

12

/arkcompiler/ets_frontend/ets2panda/ir/expressions/
H A DawaitExpression.h34 explicit AwaitExpression(Expression *argument) : Expression(AstNodeType::AWAIT_EXPRESSION), argument_(argument) {} in AwaitExpression() argument
H A DtypeofExpression.h29 explicit TypeofExpression(Expression *const argument) in TypeofExpression() argument
H A DunaryExpression.h43 explicit UnaryExpression(Expression *const argument, lexer::TokenType const unaryOperator) in UnaryExpression() argument
H A DyieldExpression.h34 explicit YieldExpression(Expression *const argument, bool const isDelegate) in YieldExpression() argument
H A DawaitExpression.cpp77 auto *const argument = argument_ != nullptr ? argument_->Clone(allocator, nullptr)->AsExpression() : nullptr; in Clone() local
H A DtypeofExpression.cpp74 auto *const argument = argument_->Clone(allocator, nullptr)->AsExpression(); in Clone() local
H A DupdateExpression.h34 explicit UpdateExpression(Expression *const argument, lexer::TokenType const updateOperator, bool const isPrefix) in UpdateExpression() argument
H A DupdateExpression.cpp85 auto *const argument = argument_ != nullptr ? argument_->Clone(allocator, nullptr)->AsExpression() : nullptr; in Clone() local
H A DunaryExpression.cpp77 auto *const argument = argument_ != nullptr ? argument_->Clone(allocator, nullptr)->AsExpression() : nullptr; in Clone() local
H A DyieldExpression.cpp75 auto *const argument = argument_ != nullptr ? argument_->Clone(allocator, nullptr)->AsExpression() : nullptr; in Clone() local
/arkcompiler/ets_frontend/ets2panda/ir/statements/
H A DreturnStatement.h38 explicit ReturnStatement(Expression *argument) : Statement(AstNodeType::RETURN_STATEMENT), argument_(argument) {} in ReturnStatement() argument
H A DthrowStatement.h30 explicit ThrowStatement(Expression *argument) : Statement(AstNodeType::THROW_STATEMENT), argument_(argument) {} in ThrowStatement() argument
/arkcompiler/ets_frontend/ets2panda/ir/base/
H A DspreadElement.h34 explicit SpreadElement(AstNodeType const nodeType, ArenaAllocator *const allocator, Expression *const argument) in SpreadElement() argument
/arkcompiler/ets_frontend/es2panda/ir/statements/
H A DreturnStatement.h35 explicit ReturnStatement(Expression *argument) : Statement(AstNodeType::RETURN_STATEMENT), argument_(argument) {} in ReturnStatement() argument
H A DthrowStatement.h36 explicit ThrowStatement(Expression *argument) : Statement(AstNodeType::THROW_STATEMENT), argument_(argument) {} in ThrowStatement() argument
/arkcompiler/ets_frontend/es2panda/ir/expressions/
H A DawaitExpression.h34 explicit AwaitExpression(Expression *argument) : Expression(AstNodeType::AWAIT_EXPRESSION), argument_(argument) {} in AwaitExpression() argument
H A DupdateExpression.h34 explicit UpdateExpression(Expression *argument, lexer::TokenType updateOperator, bool isPrefix) in UpdateExpression() argument
H A DunaryExpression.h35 explicit UnaryExpression(Expression *argument, lexer::TokenType unaryOperator) in UnaryExpression() argument
H A DyieldExpression.h35 explicit YieldExpression(Expression *argument, bool isDelegate) in YieldExpression() argument
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
H A DenumPostCheckLowering.cpp25 CreateCall( checker::ETSChecker *checker, ir::ClassDefinition *const classDef, checker::ETSEnumType::Method (checker::ETSEnumType::*getMethod)() const, ir::Expression *argument) CreateCall() argument
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dstub.cpp35 GateRef argument = env_.GetArgument(i); in InitializeArguments() local
/arkcompiler/ets_frontend/ets2panda/util/ast-builders/
H A DetsNewClassInstanceExpressionBuilder.h44 ETSNewClassInstanceExpressionBuilder &AddArgument(ir::Expression *argument) in AddArgument() argument
H A DyieldExpressionBuilder.h29 YieldExpressionBuilder &SetArgument(Expression *argument) in SetArgument() argument
/arkcompiler/ets_frontend/es2panda/ir/base/
H A DspreadElement.h35 explicit SpreadElement(AstNodeType nodeType, Expression *argument) : Expression(nodeType), argument_(argument) {} in SpreadElement() argument
/arkcompiler/ets_runtime/ecmascript/
H A Djs_promise.cpp156 TriggerPromiseReactions(JSThread *thread, const JSHandle<TaggedQueue> &reactions, const JSHandle<JSTaggedValue> &argument) TriggerPromiseReactions() argument

Completed in 11 milliseconds

12