Lines Matching refs:localName
230 auto localName = it->AsExportSpecifier()->Local()->Name();
234 if (currentScope->FindLocal(localName, ResolveBindingOptions::ALL) != nullptr ||
235 (currentScope->IsTSModuleScope() && (currentScope->InLocalTSBindings(localName) ||
236 currentScope->AsTSModuleScope()->InExportBindings(localName)))) {
244 ThrowUndeclaredExport(it->AsExportSpecifier()->Local()->Start(), localName);
247 if (scope_->FindLocal(localName) == nullptr) {
250 if (scope_->InLocalTSBindings(localName) ||
251 scope_->FindLocal(localName, ResolveBindingOptions::INTERFACES)) {
254 ThrowUndeclaredExport(it->AsExportSpecifier()->Local()->Start(), localName);
256 scope_->AsModuleScope()->ConvertLocalVariableToModuleVariable(Allocator(), localName);