Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/es2panda/binder/
Dbinder.cpp972 fn(currentScope->FindLocalTSVariable<binder::TSBindingType::NAMESPACE>(name)); in FindIdentifierTSVariables()
973 fn(currentScope->FindLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(name)); in FindIdentifierTSVariables()
974 fn(currentScope->FindLocalTSVariable<binder::TSBindingType::IMPORT_EQUALS>(name)); in FindIdentifierTSVariables()
Dscope.h359 Variable *FindLocalTSVariable(const util::StringView &name) const in FindLocalTSVariable() function
/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.cpp181 !currentScope->FindLocalTSVariable<binder::TSBindingType::IMPORT_EQUALS>(name)) { in FindExportVariableInTsModuleScope()
1731 binder::Variable *res = scope->FindLocalTSVariable<type>(name); in FindTSVariable()
2381 v = scope->FindLocalTSVariable<binder::TSBindingType::NAMESPACE>(name); in FindLocalTSVariables()
2388 v = scope->FindLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(name); in FindLocalTSVariables()
2392 v = scope->FindLocalTSVariable<binder::TSBindingType::IMPORT_EQUALS>(name); in FindLocalTSVariables()
2763 scope->FindLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(name) != nullptr) { in IsValueReference()
2769 var = scope->FindLocalTSVariable<binder::TSBindingType::NAMESPACE>(name); in IsValueReference()
2775 var = scope->FindLocalTSVariable<binder::TSBindingType::IMPORT_EQUALS>(name); in IsValueReference()
/arkcompiler/ets_frontend/es2panda/parser/
DstatementParser.cpp392 … binder::Variable *res = parentScope->FindLocalTSVariable<binder::TSBindingType::NAMESPACE>(name); in ParseTsModuleOrNamespaceDelaration()
401 res = parentScope->FindLocalTSVariable<binder::TSBindingType::NAMESPACE>(name); in ParseTsModuleOrNamespaceDelaration()
489 auto *var = scope->FindLocalTSVariable<binder::TSBindingType::IMPORT_EQUALS>(name); in ParseTsImportEqualsDeclaration()
3007 … auto *var = scope->FindLocalTSVariable<binder::TSBindingType::IMPORT_EQUALS>(local->Name()); in ParseImportDefaultSpecifier()
DparserImpl.cpp3479 …binder::Variable *res = currentScope->FindLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(iden… in ParseEnumDeclaration()
3489 res = currentScope->FindLocalTSVariable<binder::TSBindingType::ENUMLITERAL>(ident); in ParseEnumDeclaration()