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:ETSClassLiteral
(Results
1 - 9
of
9
) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/ir/ets/
H
A
D
etsClassLiteral.cpp
25
void
ETSClassLiteral
::TransformChildren(const NodeTransformer &cb, std::string_view transformationName)
in TransformChildren()
33
void
ETSClassLiteral
::Iterate([[maybe_unused]] const NodeTraverser &cb) const
in Iterate()
38
void
ETSClassLiteral
::Dump(ir::AstDumper *dumper) const
in Dump()
40
dumper->Add({{"type", "
ETSClassLiteral
"}});
in Dump()
43
void
ETSClassLiteral
::Dump(ir::SrcDumper *dumper) const
in Dump()
45
dumper->Add("
ETSClassLiteral
");
in Dump()
48
void
ETSClassLiteral
::Compile(compiler::PandaGen *pg) const
in Compile()
53
void
ETSClassLiteral
::Compile(compiler::ETSGen *etsg) const
in Compile()
58
checker::Type *
ETSClassLiteral
::Check(checker::TSChecker *checker)
in Check()
63
checker::Type *
ETSClassLiteral
[all...]
H
A
D
etsClassLiteral.h
31
class
ETSClassLiteral
: public Expression {
class
33
ETSClassLiteral
() = delete;
34
~
ETSClassLiteral
() override = default;
36
NO_COPY_SEMANTIC(
ETSClassLiteral
);
37
NO_MOVE_SEMANTIC(
ETSClassLiteral
);
39
explicit
ETSClassLiteral
(ir::TypeNode *const expr) : Expression(AstNodeType::ETS_CLASS_LITERAL), expr_(expr) {}
in ETSClassLiteral()
function in ark::es2panda::ark::es2panda::ark::es2panda::ir::ETSClassLiteral
41
[[nodiscard]]
ETSClassLiteral
*Clone(ArenaAllocator *allocator, AstNode *parent) override;
/arkcompiler/ets_frontend/ets2panda/util/ast-builders/
H
A
D
etsClassLiteralBuilder.h
25
class ETSClassLiteralBuilder : public AstBuilder<
ETSClassLiteral
> {
35
ETSClassLiteral
*Build()
in Build()
/arkcompiler/ets_frontend/ets2panda/ir/
H
A
D
astNodeMapping.h
90
_(ETS_CLASS_LITERAL,
ETSClassLiteral
) \
/arkcompiler/ets_frontend/ets2panda/compiler/core/
H
A
D
JSCompilerUnreachable.cpp
96
void JSCompiler::Compile([[maybe_unused]] const ir::
ETSClassLiteral
*expr) const
in Compile()
H
A
D
ETSCompiler.cpp
77
void ETSCompiler::Compile(const ir::
ETSClassLiteral
*expr) const
in Compile()
/arkcompiler/ets_frontend/ets2panda/checker/
H
A
D
TSAnalyzerUnreachable.cpp
77
checker::Type *TSAnalyzer::Check([[maybe_unused]] ir::
ETSClassLiteral
*expr) const
in Check()
H
A
D
ETSAnalyzer.cpp
278
checker::Type *ETSAnalyzer::Check(ir::
ETSClassLiteral
*expr) const
in Check()
/arkcompiler/ets_frontend/ets2panda/parser/
H
A
D
ETSparserExpressions.cpp
294
auto *classLiteral = AllocNode<ir::
ETSClassLiteral
>(potentialType);
in ParseDefaultPrimaryExpression()
Completed in 12 milliseconds