Searched refs:Bindings (Results 1 – 8 of 8) sorted by relevance
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
D | regScope.cpp | 55 for (const auto &[_, var] : scope->Bindings()) { in LocalRegScope() 99 for (const auto &[_, var] : funcScope->Bindings()) { in FunctionRegScope()
|
/arkcompiler/ets_frontend/es2panda/compiler/base/ |
D | hoisting.cpp | 106 for (const auto &[_, var] : scope->Bindings()) { in Hoist()
|
/arkcompiler/ets_frontend/es2panda/ir/base/ |
D | scriptFunction.h | 63 scope_->Bindings().erase(THIS_PARAM); in ScriptFunction()
|
/arkcompiler/ets_frontend/es2panda/binder/ |
D | scope.h | 302 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()
|
D | scope.cpp | 207 … scope->Bindings().insert({newDecl->Name(), allocator->New<GlobalVariable>(newDecl, varFlags)}); in AddLocal() 292 functionScope_->Bindings().insert({name, nameVar_}); in BindName()
|
D | binder.cpp | 270 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/ |
D | emitter.cpp | 271 for (const auto &[name, variable] : scope->Bindings()) { in GenScopeVariableInfo()
|
/arkcompiler/ets_frontend/es2panda/parser/ |
D | statementParser.cpp | 752 const auto &bindings = Binder()->GetScope()->Bindings(); in ParseTsInterfaceDeclaration() 1195 const auto &bindings = Binder()->GetScope()->Bindings(); in AddFunctionToBinder()
|