Searched refs:decorator (Results 1 - 18 of 18) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/ir/base/ |
H A D | classElement.h | 91 void AddDecorator(ir::Decorator *const decorator) in AddDecorator() argument 93 if (decorator != nullptr) { in AddDecorator() 94 decorators_.emplace_back(decorator); in AddDecorator()
|
H A D | classProperty.cpp | 173 for (auto *const decorator : decorators_) { in Clone() 174 clone->AddDecorator(decorator->Clone(allocator, clone)); in Clone()
|
H A D | spreadElement.cpp | 24 #include "ir/base/decorator.h" 40 for (auto *decorator : other.decorators_) { in SpreadElement() 41 decorators_.emplace_back(decorator->Clone(allocator, this)); in SpreadElement()
|
H A D | methodDefinition.cpp | 262 for (auto *const decorator : decorators_) { in Clone() 263 clone->AddDecorator(decorator->Clone(allocator, clone)); in Clone()
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/arkdb/ |
H A D | timeout.py | 35 def decorator(func): function 44 return decorator
|
/arkcompiler/ets_frontend/ets2panda/ir/ets/ |
H A D | etsStructDeclaration.cpp | 25 #include "ir/base/decorator.h" 88 for (auto *const decorator : decorators_) { in Clone() 89 clone->AddDecorator(decorator->Clone(allocator, clone)); in Clone()
|
H A D | etsStructDeclaration.h | 60 void AddDecorator(Decorator *const decorator) in AddDecorator() argument 62 decorators_.emplace_back(decorator); in AddDecorator()
|
/arkcompiler/ets_frontend/ets2panda/ir/expressions/ |
H A D | identifier.cpp | 32 for (auto *decorator : other.decorators_) { in Identifier() 33 decorators_.emplace_back(decorator->Clone(allocator, this)); in Identifier()
|
H A D | objectExpression.cpp | 18 #include "ir/base/decorator.h" 55 for (auto *decorator : other.decorators_) { in ObjectExpression() 56 decorators_.emplace_back(decorator->Clone(allocator, this)); in ObjectExpression()
|
H A D | arrayExpression.cpp | 26 #include "ir/base/decorator.h" 51 for (auto *decorator : other.decorators_) { in ArrayExpression() 52 decorators_.emplace_back(decorator->Clone(allocator, this)); in ArrayExpression()
|
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/ |
H A D | decorator_value.py | 43 def decorator(func: Any) -> Any: function 64 return decorator
|
/arkcompiler/ets_frontend/es2panda/ir/expressions/ |
H A D | identifier.cpp | 23 #include <ir/base/decorator.h>
|
/arkcompiler/ets_frontend/es2panda/ir/statements/ |
H A D | classDeclaration.cpp | 24 #include <ir/base/decorator.h>
|
/arkcompiler/ets_frontend/es2panda/ir/base/ |
H A D | methodDefinition.cpp | 20 #include <ir/base/decorator.h>
|
/arkcompiler/ets_frontend/ets2panda/parser/ |
H A D | ASparser.cpp | 25 #include "ir/base/decorator.h" 97 auto *decorator = AllocNode<ir::Decorator>(expr); in ParseDecorator() local 98 decorator->SetRange({start, expr->End()}); in ParseDecorator() 99 return decorator; in ParseDecorator()
|
/arkcompiler/ets_frontend/es2panda/parser/ |
H A D | expressionParser.cpp | 18 #include <ir/base/decorator.h>
|
H A D | parserImpl.cpp | 28 #include <ir/base/decorator.h> 2621 ThrowSyntaxError("A decorator can only decorate a method implementation, not an overload.", in ParseClassMethod()
|
H A D | statementParser.cpp | 22 #include <ir/base/decorator.h>
|
Completed in 24 milliseconds