123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- "use strict";
- /**
- * @license
- * Copyright Google LLC All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.dev/license
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.getImportOfIdentifier = getImportOfIdentifier;
- const ts = require("typescript");
- /** Resolves the import of the specified identifier. */
- function getImportOfIdentifier(node, typeChecker) {
- // Free standing identifiers which resolve to an import will be handled
- // as direct imports. e.g. "@Component()" where "Component" is an identifier
- // referring to an import specifier.
- const directImport = getSpecificImportOfIdentifier(node, typeChecker);
- if (directImport !== null) {
- return directImport;
- }
- else if (ts.isQualifiedName(node.parent) && node.parent.right === node) {
- // Determines the import of a qualified name. e.g. "let t: core.Component". In that
- // case, the import of the most left identifier will be determined ("core").
- const qualifierRoot = getQualifiedNameRoot(node.parent);
- if (qualifierRoot) {
- const moduleName = getImportOfNamespacedIdentifier(qualifierRoot, typeChecker);
- if (moduleName) {
- return { moduleName, symbolName: node.text };
- }
- }
- }
- else if (ts.isPropertyAccessExpression(node.parent) && node.parent.name === node) {
- // Determines the import of a property expression. e.g. "@core.Component". In that
- // case, the import of the most left identifier will be determined ("core").
- const rootIdentifier = getPropertyAccessRoot(node.parent);
- if (rootIdentifier) {
- const moduleName = getImportOfNamespacedIdentifier(rootIdentifier, typeChecker);
- if (moduleName) {
- return { moduleName, symbolName: node.text };
- }
- }
- }
- return null;
- }
- /**
- * Resolves the import of the specified identifier. Expects the identifier to resolve
- * to a fine-grained import declaration with import specifiers.
- */
- function getSpecificImportOfIdentifier(node, typeChecker) {
- const symbol = typeChecker.getSymbolAtLocation(node);
- if (!symbol || !symbol.declarations || !symbol.declarations.length) {
- return null;
- }
- const declaration = symbol.declarations[0];
- if (!ts.isImportSpecifier(declaration)) {
- return null;
- }
- // Since the declaration is an import specifier, we can walk up three times to get a reference
- // to the import declaration node (NamedImports -> ImportClause -> ImportDeclaration).
- const importDecl = declaration.parent.parent.parent;
- if (!ts.isStringLiteral(importDecl.moduleSpecifier)) {
- return null;
- }
- return {
- moduleName: importDecl.moduleSpecifier.text,
- symbolName: declaration.propertyName ? declaration.propertyName.text : declaration.name.text,
- };
- }
- /**
- * Resolves the import of the specified identifier. Expects the identifier to
- * resolve to a namespaced import declaration. e.g. "import * as core from ...".
- */
- function getImportOfNamespacedIdentifier(node, typeChecker) {
- const symbol = typeChecker.getSymbolAtLocation(node);
- if (!symbol || !symbol.declarations || !symbol.declarations.length) {
- return null;
- }
- const declaration = symbol.declarations[0];
- if (!ts.isNamespaceImport(declaration)) {
- return null;
- }
- // Since the declaration is a namespace import, we can walk up three times to get a reference
- // to the import declaration node (NamespaceImport -> ImportClause -> ImportDeclaration).
- const importDecl = declaration.parent.parent;
- if (!ts.isStringLiteral(importDecl.moduleSpecifier)) {
- return null;
- }
- return importDecl.moduleSpecifier.text;
- }
- /**
- * Gets the root identifier of a qualified type chain. For example: "core.GestureConfig"
- * will return the "core" identifier. Allowing us to find the import of "core".
- */
- function getQualifiedNameRoot(name) {
- while (ts.isQualifiedName(name.left)) {
- name = name.left;
- }
- return ts.isIdentifier(name.left) ? name.left : null;
- }
- /**
- * Gets the root identifier of a property access chain. For example: "core.GestureConfig"
- * will return the "core" identifier. Allowing us to find the import of "core".
- */
- function getPropertyAccessRoot(node) {
- while (ts.isPropertyAccessExpression(node.expression)) {
- node = node.expression;
- }
- return ts.isIdentifier(node.expression) ? node.expression : null;
- }
- //# sourceMappingURL=imports.js.map
|