e179c5827f
To create the symbols of a module, the static symbol resolver first gets all the symbols loaded in the module by an export statement. For `export * from './module'`-like statements, all symbols from `./module` must be loaded. In cases where the exporting module is actually the same module that the export statement is in, this causes an unbounded recursive resolution of the same module. Exports of the same module are not needed, as their symbols will be resolved when the symbols in the module metadata's `metadata` key is explored. This commit resolves the unbounded recursion by loading exporting modules only if they differ from the module currently being resolved. Closes https://github.com/angular/vscode-ng-language-service/issues/593 PR Close #35262 |
||
---|---|---|
.. | ||
README.md | ||
compiler_spec.ts | ||
jit_summaries_spec.ts | ||
regression_spec.ts | ||
static_reflector_spec.ts | ||
static_symbol_resolver_spec.ts | ||
summary_resolver_spec.ts | ||
summary_serializer_spec.ts | ||
test_util.ts |
README.md
Tests in this directory are excluded from running in the browser and only run in node.