Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:Decorators
(Results
1 - 18
of
18
) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/ir/statements/
H
A
D
classDeclaration.h
39
const ArenaVector<Decorator *> &
Decorators
() const
in Decorators()
function in ark::es2panda::ir::ClassDeclaration
46
return &
Decorators
();
H
A
D
variableDeclaration.h
58
const ArenaVector<Decorator *> &
Decorators
() const
in Decorators()
function in ark::es2panda::ir::VariableDeclaration
65
return &
Decorators
();
/arkcompiler/ets_frontend/ets2panda/ir/base/
H
A
D
classElement.h
71
[[nodiscard]] const ArenaVector<Decorator *> &
Decorators
() const noexcept
78
return &
Decorators
();
H
A
D
spreadElement.h
56
[[nodiscard]] const ArenaVector<Decorator *> &
Decorators
() const noexcept
63
return &
Decorators
();
/arkcompiler/ets_frontend/ets2panda/ir/ets/
H
A
D
etsStructDeclaration.h
45
[[nodiscard]] const ArenaVector<Decorator *> &
Decorators
() const noexcept
52
return &
Decorators
();
/arkcompiler/ets_frontend/ets2panda/ir/expressions/
H
A
D
objectExpression.h
79
[[nodiscard]] const ArenaVector<Decorator *> &
Decorators
() const noexcept
86
return &
Decorators
();
H
A
D
identifier.h
90
[[nodiscard]] const ArenaVector<Decorator *> &
Decorators
() const noexcept
97
return &
Decorators
();
H
A
D
arrayExpression.h
112
[[nodiscard]] const ArenaVector<Decorator *> &
Decorators
() const noexcept
119
return &
Decorators
();
/arkcompiler/ets_frontend/ets2panda/ir/ts/
H
A
D
tsEnumDeclaration.h
123
const ArenaVector<Decorator *> &
Decorators
() const
in Decorators()
function in ark::es2panda::ark::es2panda::ir::TSEnumDeclaration
130
return &
Decorators
();
H
A
D
tsTypeAliasDeclaration.h
73
const ArenaVector<Decorator *> &
Decorators
() const
in Decorators()
function in ark::es2panda::ark::es2panda::ir::TSTypeAliasDeclaration
80
return &
Decorators
();
H
A
D
tsInterfaceDeclaration.h
143
const ArenaVector<Decorator *> &
Decorators
() const
in Decorators()
function in ark::es2panda::ark::es2panda::ir::TSInterfaceDeclaration
150
return &
Decorators
();
/arkcompiler/ets_frontend/es2panda/ir/statements/
H
A
D
classDeclaration.h
53
const ArenaVector<Decorator *> &
Decorators
() const
in Decorators()
function in panda::es2panda::panda::es2panda::panda::es2panda::ir::ClassDeclaration
/arkcompiler/ets_frontend/es2panda/ir/base/
H
A
D
classProperty.h
90
const ArenaVector<Decorator *> &
Decorators
() const
in Decorators()
function in panda::es2panda::panda::es2panda::panda::es2panda::ir::ClassProperty
H
A
D
methodDefinition.h
126
const ArenaVector<Decorator *> &
Decorators
() const
in Decorators()
function in panda::es2panda::panda::es2panda::panda::es2panda::ir::MethodDefinition
/arkcompiler/ets_frontend/ets2panda/parser/
H
A
D
expressionTSParser.cpp
174
if (returnNode->AsIdentifier()->
Decorators
().empty()) {
in ParsePatternElementGetReturnNode()
178
{returnNode->AsIdentifier()->
Decorators
().front()->Start(), Lexer()->GetToken().End()});
in ParsePatternElementGetReturnNode()
H
A
D
ETSparser.cpp
1346
if (parameter->AsIdentifier()->
Decorators
().empty()) {
in GetAnnotatedExpressionFromParam()
1350
{parameter->AsIdentifier()->
Decorators
().front()->Start(), Lexer()->GetToken().End()});
in GetAnnotatedExpressionFromParam()
/arkcompiler/ets_frontend/es2panda/parser/transformer/
H
A
D
transformer.cpp
1278
auto methodDecorators = it->AsMethodDefinition()->
Decorators
();
in HasPrivateIdentifierInDecorators()
1297
auto propDecorators = it->AsClassProperty()->
Decorators
();
in HasPrivateIdentifierInDecorators()
1344
auto methodDecorators = node->AsMethodDefinition()->
Decorators
();
in CreateVariableDeclarationForDecorators()
1363
auto propDecorators = node->AsClassProperty()->
Decorators
();
in CreateVariableDeclarationForDecorators()
1372
auto classDecorators = node->AsClassDeclaration()->
Decorators
();
in CreateVariableDeclarationForDecorators()
1460
auto decorators = node->
Decorators
();
in CreatePropertyDecorators()
1499
size_t pos = node->
Decorators
().size();
in CreateMethodDecorators()
1500
auto decorators = node->
Decorators
();
in CreateMethodDecorators()
1609
auto decorators = node->
Decorators
();
in CreateClassDecorators()
/arkcompiler/ets_frontend/es2panda/parser/
H
A
D
parserImpl.cpp
2248
!it->AsMethodDefinition()->
Decorators
().empty()) {
in CheckAccessorPair()
2249
ThrowSyntaxError("
Decorators
cannot be applied to multiple get/set accessors of the same name.", errorInfo);
in CheckAccessorPair()
2847
ThrowSyntaxError("
Decorators
are not valid here.", decorators.front()->Start());
in ParseDecoratorsAndAnnotations()
2875
ThrowSyntaxError("
Decorators
are not available for auto accessor property now.");
in ParseClassElement()
2889
ThrowSyntaxError("
Decorators
are not valid here.", decorators.front()->Start());
in ParseClassElement()
2900
ThrowSyntaxError("
Decorators
are not valid here.", decorators.front()->Start());
in ParseClassElement()
2910
ThrowSyntaxError("
Decorators
are not valid here.", decorators.front()->Start());
in ParseClassElement()
2943
ThrowSyntaxError("
Decorators
are not valid here.", decorators.front()->Start());
in ParseClassElement()
Completed in 22 milliseconds