UNPKG

@angular/core

Version:

Angular - the core framework

40 lines (35 loc) 1.35 kB
'use strict'; /** * @license Angular v19.2.8 * (c) 2010-2025 Google LLC. https://angular.io/ * License: MIT */ 'use strict'; var ts = require('typescript'); var imports = require('./imports-CIX-JgAN.js'); function getCallDecoratorImport(typeChecker, decorator) { // Note that this does not cover the edge case where decorators are called from // a namespace import: e.g. "@core.Component()". This is not handled by Ngtsc either. if (!ts.isCallExpression(decorator.expression) || !ts.isIdentifier(decorator.expression.expression)) { return null; } const identifier = decorator.expression.expression; return imports.getImportOfIdentifier(typeChecker, identifier); } /** * Gets all decorators which are imported from an Angular package (e.g. "@angular/core") * from a list of decorators. */ function getAngularDecorators(typeChecker, decorators) { return decorators .map((node) => ({ node, importData: getCallDecoratorImport(typeChecker, node) })) .filter(({ importData }) => importData && importData.importModule.startsWith('@angular/')) .map(({ node, importData }) => ({ node: node, name: importData.name, moduleName: importData.importModule, importNode: importData.node, })); } exports.getAngularDecorators = getAngularDecorators;