Lines Matching refs:moduleScope
197 validateModuleRecordEntries(moduleScope: ModuleScope): void {
209 if (!moduleScope.hasDecl(localName) && localName != '*default*') {
219 setExportedDecls(moduleScope: ModuleScope): void {
222 moduleScope.setExportDecl(localName);
226 setModuleEnvironment(moduleScope: ModuleScope): void {
227 this.validateModuleRecordEntries(moduleScope);
228 this.setExportedDecls(moduleScope);
232 export function setModuleNamespaceImports(compiler: Compiler, moduleScope: Scope, pandagen: PandaGe…
233 if (!(moduleScope instanceof ModuleScope)) {
237 moduleScope.module().getNamespaceImportEntries().forEach(entry => {
244 export function assignIndexToModuleVariable(moduleScope: Scope): void {
245 if (!(moduleScope instanceof ModuleScope)) {
250 …moduleScope.module().getLocalExportEntries().forEach((entries: Array<Entry>, localName: string) =>…
251 (<ModuleVariable>moduleScope.findLocal(localName)!).assignIndex(index++);
255 moduleScope.module().getRegularImportEntries().forEach((entry: Entry, localName: string) => {
256 (<ModuleVariable>moduleScope.findLocal(localName)!).assignIndex(index++);