Home
last modified time | relevance | path

Searched refs:bindings_ (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_frontend/es2panda/binder/
Dscope.cpp73 auto res = bindings_.find(util::StringView{interfaceName}); in FindLocal()
74 if (res != bindings_.end()) { in FindLocal()
83 auto res = bindings_.find(name); in FindLocal()
84 if (res == bindings_.end()) { in FindLocal()
219bindings_.insert({newDecl->Name(), allocator->New<LocalVariable>(newDecl, VariableFlags::INTERFACE… in AddLocal()
235 bindings_.insert({newDecl->Name(), allocator->New<LocalVariable>(newDecl, flags)}); in AddLocal()
252 bindings_.insert({newDecl->Name(), param}); in AddParam()
283 bindings_.insert({varDecl->Name(), paramVar}); in AddParamDecl()
377 auto res = bindings_.find(localName); in ConvertLocalVariableToModuleVariable()
380 ASSERT(res != bindings_.end()); in ConvertLocalVariableToModuleVariable()
[all …]
Dscope.h304 return bindings_; in Bindings()
309 return bindings_; in Bindings()
346 …: parent_(parent), decls_(allocator->Adapter()), bindings_(allocator->Adapter()), tsBindings_(allo… in Scope()
367 VariableMap bindings_; variable
525 bindings_.erase(thisParam); in RemoveThisParam()
545 this->bindings_ = paramScope->Bindings(); in BindParamScope()
551 ASSERT(this->bindings_.empty()); in AssignParamScope()
569 this->bindings_.insert(paramScope_->Bindings().begin(), paramScope_->Bindings().end()); in AddBindsFromParam()
840 bindings_.insert({newDecl->Name(), allocator->New<T>(newDecl, flags)}); in AddVar()
869 bindings_.insert({newDecl->Name(), allocator->New<T>(newDecl, flags)}); in AddFunction()
[all …]