Home
last modified time | relevance | path

Searched refs:FindLocalTSVariable (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.cpp180 !currentScope->FindLocalTSVariable<binder::TSBindingType::IMPORT_EQUALS>(name)) { in FindExportVariableInTsModuleScope()
1264 binder::Variable *res = scope->FindLocalTSVariable<type>(name); in FindTSVariable()
1898 v = scope->FindLocalTSVariable<binder::TSBindingType::NAMESPACE>(name); in FindLocalTSVariables()
1905 v = scope->FindLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(name); in FindLocalTSVariables()
1909 v = scope->FindLocalTSVariable<binder::TSBindingType::IMPORT_EQUALS>(name); in FindLocalTSVariables()
2280 scope->FindLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(name) != nullptr) { in IsValueReference()
2286 var = scope->FindLocalTSVariable<binder::TSBindingType::NAMESPACE>(name); in IsValueReference()
2292 var = scope->FindLocalTSVariable<binder::TSBindingType::IMPORT_EQUALS>(name); in IsValueReference()
/arkcompiler/ets_frontend/es2panda/binder/
Dbinder.cpp916 fn(currentScope->FindLocalTSVariable<binder::TSBindingType::NAMESPACE>(name)); in FindIdentifierTSVariables()
917 fn(currentScope->FindLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(name)); in FindIdentifierTSVariables()
918 fn(currentScope->FindLocalTSVariable<binder::TSBindingType::IMPORT_EQUALS>(name)); in FindIdentifierTSVariables()
Dscope.h328 Variable *FindLocalTSVariable(const util::StringView &name) const in FindLocalTSVariable() function
/arkcompiler/ets_frontend/es2panda/parser/
DstatementParser.cpp383 … binder::Variable *res = parentScope->FindLocalTSVariable<binder::TSBindingType::NAMESPACE>(name); in ParseTsModuleOrNamespaceDelaration()
392 res = parentScope->FindLocalTSVariable<binder::TSBindingType::NAMESPACE>(name); in ParseTsModuleOrNamespaceDelaration()
480 auto *var = scope->FindLocalTSVariable<binder::TSBindingType::IMPORT_EQUALS>(name); in ParseTsImportEqualsDeclaration()
2889 … auto *var = scope->FindLocalTSVariable<binder::TSBindingType::IMPORT_EQUALS>(local->Name()); in ParseImportDefaultSpecifier()
DparserImpl.cpp3144 …binder::Variable *res = currentScope->FindLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(iden… in ParseEnumDeclaration()
3154 res = currentScope->FindLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(ident); in ParseEnumDeclaration()