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:blockStmt
(Results
1 - 8
of
8
) sorted by relevance
/arkcompiler/ets_frontend/es2panda/parser/
H
A
D
commonjs.cpp
114
auto *
blockStmt
= AllocNode<ir::BlockStatement>(Binder()->GetScope(), std::move(statements));
in ParseCommonjs()
local
115
Binder()->GetScope()->BindNode(
blockStmt
);
in ParseCommonjs()
117
program_.SetAst(
blockStmt
);
in ParseCommonjs()
H
A
D
parserImpl.cpp
207
auto *
blockStmt
= AllocNode<ir::BlockStatement>(Binder()->GetScope(), std::move(statements));
in ParseProgram()
local
208
Binder()->GetScope()->BindNode(
blockStmt
);
in ParseProgram()
209
blockStmt
->SetRange({startLoc, lexer_->GetToken().End()});
in ParseProgram()
211
program_.SetAst(
blockStmt
);
in ParseProgram()
/arkcompiler/ets_frontend/ets2panda/parser/
H
A
D
ETSFormattedParser.cpp
283
auto *const
blockStmt
= AllocNode<ir::BlockStatement>(Allocator(), std::move(statements));
in CreateStatement()
local
284
blockStmt
->SetRange({startLoc, lexer->GetToken().End()});
in CreateStatement()
286
for (auto *statement :
blockStmt
->Statements()) {
in CreateStatement()
287
statement->SetParent(
blockStmt
);
in CreateStatement()
290
return
blockStmt
;
in CreateStatement()
H
A
D
parserImpl.cpp
85
auto *
blockStmt
= AllocNode<ir::BlockStatement>(Allocator(), std::move(statements));
in ParseProgram()
local
86
blockStmt
->SetRange({startLoc, lexer_->GetToken().End()});
in ParseProgram()
88
program_->SetAst(
blockStmt
);
in ParseProgram()
/arkcompiler/ets_frontend/ets2panda/checker/ets/
H
A
D
assignAnalyzer.h
105
void AnalyzeBlock(const ir::BlockStatement *
blockStmt
);
H
A
D
assignAnalyzer.cpp
418
void AssignAnalyzer::AnalyzeBlock(const ir::BlockStatement *
blockStmt
)
in AnalyzeBlock()
argument
422
AnalyzeStats(
blockStmt
->Statements());
in AnalyzeBlock()
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/scopesInit/
H
A
D
scopesInitPhase.h
93
void VisitBlockStatement(ir::BlockStatement *
blockStmt
) override;
H
A
D
scopesInitPhase.cpp
66
void ScopesInitPhase::VisitBlockStatement(ir::BlockStatement *
blockStmt
)
in VisitBlockStatement()
argument
68
auto localCtx = LexicalScopeCreateOrEnter<varbinder::LocalScopeWithTypeAlias>(VarBinder(),
blockStmt
);
in VisitBlockStatement()
69
HandleBlockStmt(
blockStmt
, GetScope());
in VisitBlockStatement()
Completed in 15 milliseconds