Home
last modified time | relevance | path

Searched refs:decorator (Results 1 - 18 of 18) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/ir/base/
H A DclassElement.h91 void AddDecorator(ir::Decorator *const decorator) in AddDecorator() argument
93 if (decorator != nullptr) { in AddDecorator()
94 decorators_.emplace_back(decorator); in AddDecorator()
H A DclassProperty.cpp173 for (auto *const decorator : decorators_) { in Clone()
174 clone->AddDecorator(decorator->Clone(allocator, clone)); in Clone()
H A DspreadElement.cpp24 #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 DmethodDefinition.cpp262 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 Dtimeout.py35 def decorator(func): function
44 return decorator
/arkcompiler/ets_frontend/ets2panda/ir/ets/
H A DetsStructDeclaration.cpp25 #include "ir/base/decorator.h"
88 for (auto *const decorator : decorators_) { in Clone()
89 clone->AddDecorator(decorator->Clone(allocator, clone)); in Clone()
H A DetsStructDeclaration.h60 void AddDecorator(Decorator *const decorator) in AddDecorator() argument
62 decorators_.emplace_back(decorator); in AddDecorator()
/arkcompiler/ets_frontend/ets2panda/ir/expressions/
H A Didentifier.cpp32 for (auto *decorator : other.decorators_) { in Identifier()
33 decorators_.emplace_back(decorator->Clone(allocator, this)); in Identifier()
H A DobjectExpression.cpp18 #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 DarrayExpression.cpp26 #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 Ddecorator_value.py43 def decorator(func: Any) -> Any: function
64 return decorator
/arkcompiler/ets_frontend/es2panda/ir/expressions/
H A Didentifier.cpp23 #include <ir/base/decorator.h>
/arkcompiler/ets_frontend/es2panda/ir/statements/
H A DclassDeclaration.cpp24 #include <ir/base/decorator.h>
/arkcompiler/ets_frontend/es2panda/ir/base/
H A DmethodDefinition.cpp20 #include <ir/base/decorator.h>
/arkcompiler/ets_frontend/ets2panda/parser/
H A DASparser.cpp25 #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 DexpressionParser.cpp18 #include <ir/base/decorator.h>
H A DparserImpl.cpp28 #include <ir/base/decorator.h>
2621 ThrowSyntaxError("A decorator can only decorate a method implementation, not an overload.", in ParseClassMethod()
H A DstatementParser.cpp22 #include <ir/base/decorator.h>

Completed in 24 milliseconds