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:currentScope
(Results
1 - 3
of
3
) sorted by relevance
/arkcompiler/ets_frontend/es2panda/binder/
H
A
D
binder.cpp
232
auto
currentScope
= scope_;
in ValidateExportDecl()
local
233
while (
currentScope
!= nullptr) {
in ValidateExportDecl()
234
if (
currentScope
->FindLocal(localName, ResolveBindingOptions::ALL) != nullptr ||
in ValidateExportDecl()
235
(
currentScope
->IsTSModuleScope() && (
currentScope
->InLocalTSBindings(localName) ||
in ValidateExportDecl()
236
currentScope
->AsTSModuleScope()->InExportBindings(localName)))) {
in ValidateExportDecl()
239
currentScope
=
currentScope
->Parent();
in ValidateExportDecl()
241
if (
currentScope
!= nullptr) {
in ValidateExportDecl()
1051
auto
currentScope
in FindIdentifierTSVariables()
local
[all...]
/arkcompiler/ets_frontend/es2panda/parser/transformer/
H
A
D
transformer.cpp
109
auto
currentScope
= Scope();
in AddVariableToNearestStatements()
local
110
while (
currentScope
!= nullptr) {
in AddVariableToNearestStatements()
111
if (
currentScope
->IsTSModuleScope()) {
in AddVariableToNearestStatements()
112
auto node =
currentScope
->Node();
in AddVariableToNearestStatements()
118
if (
currentScope
->IsFunctionScope()) {
in AddVariableToNearestStatements()
119
auto node =
currentScope
->Node();
in AddVariableToNearestStatements()
125
currentScope
=
currentScope
->Parent();
in AddVariableToNearestStatements()
127
tempVarDeclStatements_.insert({name,
currentScope
});
in AddVariableToNearestStatements()
167
auto
currentScope
in FindExportVariableInTsModuleScope()
local
1717
auto *
currentScope
= scope;
FindTSModuleVariable()
local
[all...]
/arkcompiler/ets_frontend/es2panda/parser/
H
A
D
parserImpl.cpp
3616
auto *
currentScope
= Binder()->GetScope();
in ParseEnumDeclaration()
local
3617
binder::Variable *res =
currentScope
->FindLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(ident);
in ParseEnumDeclaration()
3618
if (res == nullptr && isExport &&
currentScope
->IsTSModuleScope()) {
in ParseEnumDeclaration()
3619
res =
currentScope
->AsTSModuleScope()->FindExportTSVariable<binder::TSBindingType::ENUMLITERAL>(ident);
in ParseEnumDeclaration()
3621
currentScope
->AddLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(ident, res);
in ParseEnumDeclaration()
3627
res =
currentScope
->FindLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(ident);
in ParseEnumDeclaration()
3628
if (isExport &&
currentScope
->IsTSModuleScope()) {
in ParseEnumDeclaration()
3629
currentScope
->AsTSModuleScope()->AddExportTSVariable<binder::TSBindingType::ENUMLITERAL>(ident, res);
in ParseEnumDeclaration()
Completed in 10 milliseconds