Home
last modified time | relevance | path

Searched refs:Bindings (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_frontend/es2panda/compiler/core/
DregScope.cpp55 for (const auto &[_, var] : scope->Bindings()) { in LocalRegScope()
99 for (const auto &[_, var] : funcScope->Bindings()) { in FunctionRegScope()
/arkcompiler/ets_frontend/es2panda/compiler/base/
Dhoisting.cpp106 for (const auto &[_, var] : scope->Bindings()) { in Hoist()
/arkcompiler/ets_frontend/es2panda/ir/base/
DscriptFunction.h63 scope_->Bindings().erase(THIS_PARAM); in ScriptFunction()
/arkcompiler/ets_frontend/es2panda/binder/
Dscope.h302 VariableMap &Bindings() in Bindings() function
307 const VariableMap &Bindings() const in Bindings() function
545 this->bindings_ = paramScope->Bindings(); in BindParamScope()
569 this->bindings_.insert(paramScope_->Bindings().begin(), paramScope_->Bindings().end()); in AddBindsFromParam()
Dscope.cpp207 … scope->Bindings().insert({newDecl->Name(), allocator->New<GlobalVariable>(newDecl, varFlags)}); in AddLocal()
292 functionScope_->Bindings().insert({name, nameVar_}); in BindName()
Dbinder.cpp270 scope->Bindings().insert({argumentsVariable->Name(), argumentsVariable}); in InstantiateArguments()
818 scope_->AsFunctionVariableScope()->ParamScope()->Bindings().insert({decl->Name(), param}); in AddMandatoryParam()
819 scope_->AsFunctionVariableScope()->Bindings().insert({decl->Name(), param}); in AddMandatoryParam()
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
Demitter.cpp271 for (const auto &[name, variable] : scope->Bindings()) { in GenScopeVariableInfo()
/arkcompiler/ets_frontend/es2panda/parser/
DstatementParser.cpp752 const auto &bindings = Binder()->GetScope()->Bindings(); in ParseTsInterfaceDeclaration()
1195 const auto &bindings = Binder()->GetScope()->Bindings(); in AddFunctionToBinder()