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:newExpr
(Results
1 - 4
of
4
) sorted by relevance
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
H
A
D
localClassLowering.cpp
244
ir::ETSNewClassInstanceExpression *
newExpr
) {
in Perform()
256
param->SetParent(
newExpr
);
in Perform()
257
newExpr
->AddToArgumentsFront(param);
in Perform()
263
auto *
newExpr
= ast->AsETSNewClassInstanceExpression();
in Perform()
264
checker::Type *calleeType =
newExpr
->GetTypeRef()->Check(checker);
in Perform()
268
handleLocalClassInstantiation(classDef,
newExpr
);
in Perform()
H
A
D
lambdaLowering.cpp
831
auto *
newExpr
= util::NodeAllocator::ForceSetParent<ir::ETSNewClassInstanceExpression>(
in CreateConstructorCall()
local
834
newExpr
->SetParent(lambdaOrFuncRefParent);
in CreateConstructorCall()
836
newExpr
->SetRange(lambdaOrFuncRefParent != nullptr ? lambdaOrFuncRefParent->Range() : lambdaOrFuncRef->Range());
in CreateConstructorCall()
840
varBinder->ResolveReferencesForScopeWithContext(
newExpr
, nearestScope);
in CreateConstructorCall()
845
newExpr
->Check(checker);
in CreateConstructorCall()
847
return
newExpr
;
in CreateConstructorCall()
H
A
D
enumLowering.cpp
580
auto *const
newExpr
=
582
return checker->AllocNode<ir::ThrowStatement>(
newExpr
);
/arkcompiler/ets_frontend/es2panda/parser/transformer/
H
A
D
transformer.cpp
800
ir::Expression *
newExpr
= nullptr;
in CopyClassKeyExpression()
local
804
newExpr
= AllocNode<ir::Identifier>(ident->Name());
in CopyClassKeyExpression()
809
newExpr
= AllocNode<ir::PrivateIdentifier>(ident->Name());
in CopyClassKeyExpression()
814
newExpr
= AllocNode<ir::Identifier>(ident->Name());
in CopyClassKeyExpression()
819
newExpr
= AllocNode<ir::StringLiteral>(stringLiteral->Str());
in CopyClassKeyExpression()
824
newExpr
= AllocNode<ir::BigIntLiteral>(bigIntLiteral->Str());
in CopyClassKeyExpression()
829
newExpr
= AllocNode<ir::NumberLiteral>(numberLiteral->Number(), numberLiteral->Str());
in CopyClassKeyExpression()
836
newExpr
->SetRange(orginalExpr->Range());
in CopyClassKeyExpression()
837
return
newExpr
;
in CopyClassKeyExpression()
Completed in 10 milliseconds