Files
cht-lawfirm/front/app/node_modules/@angular/compiler-cli/bundles/chunk-6SQNW4B4.js
2023-01-16 17:49:38 +01:00

5267 lines
216 KiB
JavaScript
Executable File

import {createRequire as __cjsCompatRequire} from 'module';
const require = __cjsCompatRequire(import.meta.url);
const __ESM_IMPORT_META_URL__ = import.meta.url;
import {
CycleAnalyzer,
ImportGraph,
isShim,
readConfiguration
} from "./chunk-7BIXVSI3.js";
import {
CompilationMode,
ComponentDecoratorHandler,
CompoundMetadataReader,
CompoundMetadataRegistry,
DirectiveDecoratorHandler,
DtsMetadataReader,
DtsTransformRegistry,
HandlerFlags,
HostDirectivesResolver,
InjectableClassRegistry,
InjectableDecoratorHandler,
LocalMetadataRegistry,
LocalModuleScopeRegistry,
MetadataDtsModuleScopeResolver,
NgModuleDecoratorHandler,
PartialEvaluator,
PipeDecoratorHandler,
ResourceRegistry,
TraitCompiler,
TraitState,
TypeCheckScopeRegistry,
forwardRefResolver,
readBaseClass
} from "./chunk-QYEU7OV5.js";
import {
ClassMemberKind,
KnownDeclaration,
TypeScriptReflectionHost,
isConcreteDeclaration,
isDecoratorIdentifier,
isNamedClassDeclaration,
isNamedFunctionDeclaration,
isNamedVariableDeclaration,
reflectObjectLiteral
} from "./chunk-ALSLKTUB.js";
import {
ConsoleLogger,
LogLevel
} from "./chunk-OFXSI6E3.js";
import {
ContentOrigin,
SourceFileLoader
} from "./chunk-OUTDZGN7.js";
import {
AbsoluteModuleStrategy,
ImportManager,
LocalIdentifierStrategy,
LogicalProjectStrategy,
ModuleResolver,
NoopImportRewriter,
PrivateExportAliasingHost,
R3SymbolsImportRewriter,
Reference,
ReferenceEmitter,
isAssignment,
isDtsPath,
isFatalDiagnosticError,
isFromDtsFile,
isSymbolWithValueDeclaration,
replaceTsWithNgInErrors,
translateStatement,
translateType,
validateAndRewriteCoreSymbol
} from "./chunk-TOW3O33K.js";
import {
getModifiers
} from "./chunk-DSVWG4QJ.js";
import {
LogicalFileSystem,
NgtscCompilerHost,
absoluteFrom,
absoluteFromSourceFile,
dirname,
getFileSystem,
isLocalRelativePath,
isRooted,
relative,
toRelativeImport
} from "./chunk-E7DPJFUS.js";
import {
NOOP_PERF_RECORDER
} from "./chunk-4F26FKLW.js";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/create_compile_function.mjs
import ts23 from "typescript";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/entry_point.mjs
import ts7 from "typescript";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/umd_host.mjs
import ts6 from "typescript";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/utils.mjs
import ts from "typescript";
function isDefined(value) {
return value !== void 0 && value !== null;
}
function getNameText(name) {
return ts.isIdentifier(name) || ts.isLiteralExpression(name) ? name.text : name.getText();
}
function hasNameIdentifier(declaration) {
const namedDeclaration = declaration;
return namedDeclaration.name !== void 0 && ts.isIdentifier(namedDeclaration.name);
}
function isRelativePath(path) {
return isRooted(path) || /^\.\.?(\/|\\|$)/.test(path);
}
var FactoryMap = class {
constructor(factory, entries) {
this.factory = factory;
this.internalMap = new Map(entries);
}
get(key) {
if (!this.internalMap.has(key)) {
this.internalMap.set(key, this.factory(key));
}
return this.internalMap.get(key);
}
set(key, value) {
this.internalMap.set(key, value);
}
};
function resolveFileWithPostfixes(fs, path, postFixes) {
for (const postFix of postFixes) {
const testPath = absoluteFrom(path + postFix);
if (fs.exists(testPath) && fs.stat(testPath).isFile()) {
return testPath;
}
}
return null;
}
function getTsHelperFnFromDeclaration(decl) {
if (!ts.isFunctionDeclaration(decl) && !ts.isVariableDeclaration(decl)) {
return null;
}
if (decl.name === void 0 || !ts.isIdentifier(decl.name)) {
return null;
}
return getTsHelperFnFromIdentifier(decl.name);
}
function getTsHelperFnFromIdentifier(id) {
switch (stripDollarSuffix(id.text)) {
case "__assign":
return KnownDeclaration.TsHelperAssign;
case "__spread":
return KnownDeclaration.TsHelperSpread;
case "__spreadArrays":
return KnownDeclaration.TsHelperSpreadArrays;
case "__spreadArray":
return KnownDeclaration.TsHelperSpreadArray;
case "__read":
return KnownDeclaration.TsHelperRead;
default:
return null;
}
}
function stripDollarSuffix(value) {
return value.replace(/\$\d+$/, "");
}
function stripExtension(fileName) {
return fileName.replace(/\..+$/, "");
}
function loadJson(fs, packageJsonPath) {
try {
return JSON.parse(fs.readFile(packageJsonPath));
} catch {
return null;
}
}
function loadSecondaryEntryPointInfoForApfV14(fs, primaryPackageJson, packagePath, entryPointPath) {
const exportMap = primaryPackageJson == null ? void 0 : primaryPackageJson.exports;
if (!isExportObject(exportMap)) {
return null;
}
const relativeEntryPointPath = fs.relative(packagePath, entryPointPath);
const entryPointExportKey = `./${relativeEntryPointPath}`;
const entryPointInfo = exportMap[entryPointExportKey];
return isExportObject(entryPointInfo) ? entryPointInfo : null;
}
function isExportObject(thing) {
return typeof thing === "object" && thing !== null && !Array.isArray(thing);
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/commonjs_umd_utils.mjs
import ts2 from "typescript";
function findNamespaceOfIdentifier(id) {
return id.parent && ts2.isPropertyAccessExpression(id.parent) && id.parent.name === id && ts2.isIdentifier(id.parent.expression) ? id.parent.expression : null;
}
function findRequireCallReference(id, checker) {
var _a, _b;
const symbol = checker.getSymbolAtLocation(id) || null;
const declaration = (_b = symbol == null ? void 0 : symbol.valueDeclaration) != null ? _b : (_a = symbol == null ? void 0 : symbol.declarations) == null ? void 0 : _a[0];
const initializer = declaration && ts2.isVariableDeclaration(declaration) && declaration.initializer || null;
return initializer && isRequireCall(initializer) ? initializer : null;
}
function isWildcardReexportStatement(stmt) {
if (!ts2.isExpressionStatement(stmt) || !ts2.isCallExpression(stmt.expression)) {
return false;
}
let fnName = null;
if (ts2.isIdentifier(stmt.expression.expression)) {
fnName = stmt.expression.expression.text;
} else if (ts2.isPropertyAccessExpression(stmt.expression.expression) && ts2.isIdentifier(stmt.expression.expression.name)) {
fnName = stmt.expression.expression.name.text;
}
if (fnName !== "__export" && fnName !== "__exportStar") {
return false;
}
return stmt.expression.arguments.length > 0;
}
function isDefinePropertyReexportStatement(stmt) {
if (!ts2.isExpressionStatement(stmt) || !ts2.isCallExpression(stmt.expression)) {
return false;
}
if (!ts2.isPropertyAccessExpression(stmt.expression.expression) || !ts2.isIdentifier(stmt.expression.expression.expression) || stmt.expression.expression.expression.text !== "Object" || !ts2.isIdentifier(stmt.expression.expression.name) || stmt.expression.expression.name.text !== "defineProperty") {
return false;
}
const args = stmt.expression.arguments;
if (args.length !== 3) {
return false;
}
const exportsObject = args[0];
if (!ts2.isIdentifier(exportsObject) || exportsObject.text !== "exports") {
return false;
}
const propertyKey = args[1];
if (!ts2.isStringLiteral(propertyKey)) {
return false;
}
const propertyDescriptor = args[2];
if (!ts2.isObjectLiteralExpression(propertyDescriptor)) {
return false;
}
return propertyDescriptor.properties.some((prop) => prop.name !== void 0 && ts2.isIdentifier(prop.name) && prop.name.text === "get");
}
function extractGetterFnExpression(statement) {
const args = statement.expression.arguments;
const getterFn = args[2].properties.find((prop) => prop.name !== void 0 && ts2.isIdentifier(prop.name) && prop.name.text === "get");
if (getterFn === void 0 || !ts2.isPropertyAssignment(getterFn) || !ts2.isFunctionExpression(getterFn.initializer)) {
return null;
}
const returnStatement = getterFn.initializer.body.statements[0];
if (!ts2.isReturnStatement(returnStatement) || returnStatement.expression === void 0) {
return null;
}
return returnStatement.expression;
}
function isRequireCall(node) {
return ts2.isCallExpression(node) && ts2.isIdentifier(node.expression) && node.expression.text === "require" && node.arguments.length === 1 && ts2.isStringLiteral(node.arguments[0]);
}
function isExternalImport(path) {
return !/^\.\.?(\/|$)/.test(path);
}
function isExportsDeclaration(expr) {
return expr.parent && isExportsAssignment(expr.parent);
}
function isExportsAssignment(expr) {
return isAssignment(expr) && ts2.isPropertyAccessExpression(expr.left) && ts2.isIdentifier(expr.left.expression) && expr.left.expression.text === "exports" && ts2.isIdentifier(expr.left.name);
}
function isExportsStatement(stmt) {
return ts2.isExpressionStatement(stmt) && isExportsAssignment(stmt.expression);
}
function skipAliases(node) {
while (isAssignment(node)) {
node = node.right;
}
return node;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/esm2015_host.mjs
import ts4 from "typescript";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/util.mjs
function isWithinPackage(packagePath, filePath) {
const relativePath = relative(packagePath, filePath);
return isLocalRelativePath(relativePath) && !relativePath.startsWith("node_modules/");
}
var NoopDependencyTracker = class {
addDependency() {
}
addResourceDependency() {
}
recordDependencyAnalysisFailure() {
}
};
var NOOP_DEPENDENCY_TRACKER = new NoopDependencyTracker();
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/utils.mjs
import ts3 from "typescript";
function stripParentheses(node) {
return ts3.isParenthesizedExpression(node) ? node.expression : node;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/esm2015_host.mjs
var DECORATORS = "decorators";
var PROP_DECORATORS = "propDecorators";
var CONSTRUCTOR = "__constructor";
var CONSTRUCTOR_PARAMS = "ctorParameters";
var Esm2015ReflectionHost = class extends TypeScriptReflectionHost {
constructor(logger, isCore, src, dts = null) {
super(src.program.getTypeChecker());
this.logger = logger;
this.isCore = isCore;
this.src = src;
this.dts = dts;
this.publicDtsDeclarationMap = null;
this.privateDtsDeclarationMap = null;
this.preprocessedSourceFiles = /* @__PURE__ */ new Set();
this.aliasedClassDeclarations = /* @__PURE__ */ new Map();
this.decoratorCache = /* @__PURE__ */ new Map();
}
getClassSymbol(declaration) {
const symbol = this.getClassSymbolFromOuterDeclaration(declaration);
if (symbol !== void 0) {
return symbol;
}
const innerDeclaration = this.getInnerDeclarationFromAliasOrInner(declaration);
return this.getClassSymbolFromInnerDeclaration(innerDeclaration);
}
getDecoratorsOfDeclaration(declaration) {
const symbol = this.getClassSymbol(declaration);
if (!symbol) {
return null;
}
return this.getDecoratorsOfSymbol(symbol);
}
getMembersOfClass(clazz) {
const classSymbol = this.getClassSymbol(clazz);
if (!classSymbol) {
throw new Error(`Attempted to get members of a non-class: "${clazz.getText()}"`);
}
return this.getMembersOfSymbol(classSymbol);
}
getConstructorParameters(clazz) {
const classSymbol = this.getClassSymbol(clazz);
if (!classSymbol) {
throw new Error(`Attempted to get constructor parameters of a non-class: "${clazz.getText()}"`);
}
const parameterNodes = this.getConstructorParameterDeclarations(classSymbol);
if (parameterNodes) {
return this.getConstructorParamInfo(classSymbol, parameterNodes);
}
return null;
}
getBaseClassExpression(clazz) {
const superBaseClassIdentifier = super.getBaseClassExpression(clazz);
if (superBaseClassIdentifier) {
return superBaseClassIdentifier;
}
const classSymbol = this.getClassSymbol(clazz);
if ((classSymbol == null ? void 0 : classSymbol.implementation.valueDeclaration) === void 0 || !isNamedDeclaration(classSymbol.implementation.valueDeclaration)) {
return null;
}
return super.getBaseClassExpression(classSymbol.implementation.valueDeclaration);
}
getInternalNameOfClass(clazz) {
const classSymbol = this.getClassSymbol(clazz);
if (classSymbol === void 0) {
throw new Error(`getInternalNameOfClass() called on a non-class: expected ${clazz.name.text} to be a class declaration.`);
}
return this.getNameFromClassSymbolDeclaration(classSymbol, classSymbol.implementation.valueDeclaration);
}
getAdjacentNameOfClass(clazz) {
const classSymbol = this.getClassSymbol(clazz);
if (classSymbol === void 0) {
throw new Error(`getAdjacentNameOfClass() called on a non-class: expected ${clazz.name.text} to be a class declaration.`);
}
return this.getAdjacentNameOfClassSymbol(classSymbol);
}
getNameFromClassSymbolDeclaration(classSymbol, declaration) {
if (declaration === void 0) {
throw new Error(`getInternalNameOfClass() called on a class with an undefined internal declaration. External class name: ${classSymbol.name}; internal class name: ${classSymbol.implementation.name}.`);
}
if (!isNamedDeclaration(declaration)) {
throw new Error(`getInternalNameOfClass() called on a class with an anonymous inner declaration: expected a name on:
${declaration.getText()}`);
}
return declaration.name;
}
isClass(node) {
return super.isClass(node) || this.getClassSymbol(node) !== void 0;
}
getDeclarationOfIdentifier(id) {
const superDeclaration = super.getDeclarationOfIdentifier(id);
if (superDeclaration === null) {
return superDeclaration;
}
if (superDeclaration.known !== null || isConcreteDeclaration(superDeclaration) && superDeclaration.identity !== null) {
return superDeclaration;
}
let declarationNode = superDeclaration.node;
if (isNamedVariableDeclaration(superDeclaration.node) && !isTopLevel(superDeclaration.node)) {
const variableValue = this.getVariableValue(superDeclaration.node);
if (variableValue !== null && ts4.isClassExpression(variableValue)) {
declarationNode = getContainingStatement(variableValue);
}
}
const outerNode = getOuterNodeFromInnerDeclaration(declarationNode);
const declaration = outerNode !== null && isNamedVariableDeclaration(outerNode) ? this.getDeclarationOfIdentifier(outerNode.name) : superDeclaration;
if (declaration === null || declaration.known !== null || isConcreteDeclaration(declaration) && declaration.identity !== null) {
return declaration;
}
const aliasedIdentifier = this.resolveAliasedClassIdentifier(declaration.node);
if (aliasedIdentifier !== null) {
return this.getDeclarationOfIdentifier(aliasedIdentifier);
}
if (isConcreteDeclaration(declaration) && ts4.isVariableDeclaration(declaration.node)) {
const enumMembers = this.resolveEnumMembers(declaration.node);
if (enumMembers !== null) {
declaration.identity = { kind: 0, enumMembers };
}
}
return declaration;
}
getDecoratorsOfSymbol(symbol) {
const { classDecorators } = this.acquireDecoratorInfo(symbol);
if (classDecorators === null) {
return null;
}
return Array.from(classDecorators);
}
getVariableValue(declaration) {
const value = super.getVariableValue(declaration);
if (value) {
return value;
}
const block = declaration.parent.parent.parent;
const symbol = this.checker.getSymbolAtLocation(declaration.name);
if (symbol && (ts4.isBlock(block) || ts4.isSourceFile(block))) {
const decorateCall = this.findDecoratedVariableValue(block, symbol);
const target = decorateCall && decorateCall.arguments[1];
if (target && ts4.isIdentifier(target)) {
const targetSymbol = this.checker.getSymbolAtLocation(target);
const targetDeclaration = targetSymbol && targetSymbol.valueDeclaration;
if (targetDeclaration) {
if (ts4.isClassDeclaration(targetDeclaration) || ts4.isFunctionDeclaration(targetDeclaration)) {
return targetDeclaration.name || null;
} else if (ts4.isVariableDeclaration(targetDeclaration)) {
let targetValue = targetDeclaration.initializer;
while (targetValue && isAssignment2(targetValue)) {
targetValue = targetValue.right;
}
if (targetValue) {
return targetValue;
}
}
}
}
}
return null;
}
findClassSymbols(sourceFile) {
const classes = /* @__PURE__ */ new Map();
this.getModuleStatements(sourceFile).forEach((statement) => this.addClassSymbolsFromStatement(classes, statement));
return Array.from(classes.values());
}
getGenericArityOfClass(clazz) {
const dtsDeclaration = this.getDtsDeclaration(clazz);
if (dtsDeclaration && ts4.isClassDeclaration(dtsDeclaration)) {
return dtsDeclaration.typeParameters ? dtsDeclaration.typeParameters.length : 0;
}
return null;
}
getDtsDeclaration(declaration) {
if (this.dts === null) {
return null;
}
if (!isNamedDeclaration(declaration)) {
throw new Error(`Cannot get the dts file for a declaration that has no name: ${declaration.getText()} in ${declaration.getSourceFile().fileName}`);
}
const decl = this.getDeclarationOfIdentifier(declaration.name);
if (decl === null) {
throw new Error(`Cannot get the dts file for a node that cannot be associated with a declaration ${declaration.getText()} in ${declaration.getSourceFile().fileName}`);
}
if (this.publicDtsDeclarationMap === null) {
this.publicDtsDeclarationMap = this.computePublicDtsDeclarationMap(this.src, this.dts);
}
if (this.publicDtsDeclarationMap.has(decl.node)) {
return this.publicDtsDeclarationMap.get(decl.node);
}
if (this.privateDtsDeclarationMap === null) {
this.privateDtsDeclarationMap = this.computePrivateDtsDeclarationMap(this.src, this.dts);
}
if (this.privateDtsDeclarationMap.has(decl.node)) {
return this.privateDtsDeclarationMap.get(decl.node);
}
return null;
}
getEndOfClass(classSymbol) {
const implementation = classSymbol.implementation;
let last = implementation.valueDeclaration;
const implementationStatement = getContainingStatement(last);
if (implementationStatement === null)
return last;
const container = implementationStatement.parent;
if (ts4.isBlock(container)) {
const returnStatementIndex = container.statements.findIndex(ts4.isReturnStatement);
if (returnStatementIndex === -1) {
throw new Error(`Compiled class wrapper IIFE does not have a return statement: ${classSymbol.name} in ${classSymbol.declaration.valueDeclaration.getSourceFile().fileName}`);
}
last = container.statements[returnStatementIndex - 1];
} else if (ts4.isSourceFile(container)) {
if (implementation.exports !== void 0) {
implementation.exports.forEach((exportSymbol) => {
if (exportSymbol.valueDeclaration === void 0) {
return;
}
const exportStatement = getContainingStatement(exportSymbol.valueDeclaration);
if (exportStatement !== null && last.getEnd() < exportStatement.getEnd()) {
last = exportStatement;
}
});
}
const helpers = this.getHelperCallsForClass(classSymbol, ["__decorate", "__extends", "__param", "__metadata"]);
helpers.forEach((helper) => {
const helperStatement = getContainingStatement(helper);
if (helperStatement !== null && last.getEnd() < helperStatement.getEnd()) {
last = helperStatement;
}
});
}
return last;
}
detectKnownDeclaration(decl) {
if (decl.known === null && this.isJavaScriptObjectDeclaration(decl)) {
decl.known = KnownDeclaration.JsGlobalObject;
}
return decl;
}
addClassSymbolsFromStatement(classes, statement) {
if (ts4.isVariableStatement(statement)) {
statement.declarationList.declarations.forEach((declaration) => {
const classSymbol = this.getClassSymbol(declaration);
if (classSymbol) {
classes.set(classSymbol.implementation, classSymbol);
}
});
} else if (ts4.isClassDeclaration(statement)) {
const classSymbol = this.getClassSymbol(statement);
if (classSymbol) {
classes.set(classSymbol.implementation, classSymbol);
}
}
}
getInnerDeclarationFromAliasOrInner(declaration) {
if (declaration.parent !== void 0 && isNamedVariableDeclaration(declaration.parent)) {
const variableValue = this.getVariableValue(declaration.parent);
if (variableValue !== null) {
declaration = variableValue;
}
}
return declaration;
}
getClassSymbolFromOuterDeclaration(declaration) {
if (isNamedClassDeclaration(declaration) && isTopLevel(declaration)) {
return this.createClassSymbol(declaration.name, null);
}
if (!isInitializedVariableClassDeclaration(declaration)) {
return void 0;
}
const innerDeclaration = getInnerClassDeclaration(skipClassAliases(declaration));
if (innerDeclaration === null) {
return void 0;
}
return this.createClassSymbol(declaration.name, innerDeclaration);
}
getClassSymbolFromInnerDeclaration(declaration) {
let outerDeclaration = void 0;
if (ts4.isClassExpression(declaration) && hasNameIdentifier(declaration)) {
outerDeclaration = getFarLeftHandSideOfAssignment(declaration);
if (outerDeclaration !== void 0 && !isTopLevel(outerDeclaration)) {
outerDeclaration = getContainingVariableDeclaration(outerDeclaration);
}
} else if (isNamedClassDeclaration(declaration)) {
if (isTopLevel(declaration)) {
outerDeclaration = declaration;
} else {
outerDeclaration = getContainingVariableDeclaration(declaration);
}
}
if (outerDeclaration === void 0 || !hasNameIdentifier(outerDeclaration)) {
return void 0;
}
return this.createClassSymbol(outerDeclaration.name, declaration);
}
createClassSymbol(outerDeclaration, innerDeclaration) {
const declarationSymbol = this.checker.getSymbolAtLocation(outerDeclaration);
if (declarationSymbol === void 0) {
return void 0;
}
let implementationSymbol = declarationSymbol;
if (innerDeclaration !== null && isNamedDeclaration(innerDeclaration)) {
implementationSymbol = this.checker.getSymbolAtLocation(innerDeclaration.name);
}
if (!isSymbolWithValueDeclaration(implementationSymbol)) {
return void 0;
}
const classSymbol = {
name: declarationSymbol.name,
declaration: declarationSymbol,
implementation: implementationSymbol,
adjacent: this.getAdjacentSymbol(declarationSymbol, implementationSymbol)
};
return classSymbol;
}
getAdjacentSymbol(declarationSymbol, implementationSymbol) {
if (declarationSymbol === implementationSymbol) {
return void 0;
}
const innerDeclaration = implementationSymbol.valueDeclaration;
if (!ts4.isClassExpression(innerDeclaration) && !ts4.isFunctionExpression(innerDeclaration)) {
return void 0;
}
const adjacentDeclaration = getFarLeftHandSideOfAssignment(innerDeclaration);
if (adjacentDeclaration === void 0 || !isNamedVariableDeclaration(adjacentDeclaration)) {
return void 0;
}
const adjacentSymbol = this.checker.getSymbolAtLocation(adjacentDeclaration.name);
if (adjacentSymbol === declarationSymbol || adjacentSymbol === implementationSymbol || !isSymbolWithValueDeclaration(adjacentSymbol)) {
return void 0;
}
return adjacentSymbol;
}
getDeclarationOfSymbol(symbol, originalId) {
const declaration = super.getDeclarationOfSymbol(symbol, originalId);
if (declaration === null) {
return null;
}
return this.detectKnownDeclaration(declaration);
}
resolveAliasedClassIdentifier(declaration) {
this.ensurePreprocessed(declaration.getSourceFile());
return this.aliasedClassDeclarations.has(declaration) ? this.aliasedClassDeclarations.get(declaration) : null;
}
ensurePreprocessed(sourceFile) {
if (!this.preprocessedSourceFiles.has(sourceFile)) {
this.preprocessedSourceFiles.add(sourceFile);
for (const statement of this.getModuleStatements(sourceFile)) {
this.preprocessStatement(statement);
}
}
}
preprocessStatement(statement) {
if (!ts4.isVariableStatement(statement)) {
return;
}
const declarations = statement.declarationList.declarations;
if (declarations.length !== 1) {
return;
}
const declaration = declarations[0];
const initializer = declaration.initializer;
if (!ts4.isIdentifier(declaration.name) || !initializer || !isAssignment2(initializer) || !ts4.isIdentifier(initializer.left) || !this.isClass(declaration)) {
return;
}
const aliasedIdentifier = initializer.left;
const aliasedDeclaration = this.getDeclarationOfIdentifier(aliasedIdentifier);
if (aliasedDeclaration === null) {
throw new Error(`Unable to locate declaration of ${aliasedIdentifier.text} in "${statement.getText()}"`);
}
this.aliasedClassDeclarations.set(aliasedDeclaration.node, declaration.name);
}
getModuleStatements(sourceFile) {
return Array.from(sourceFile.statements);
}
findDecoratedVariableValue(node, symbol) {
if (!node) {
return null;
}
if (ts4.isBinaryExpression(node) && node.operatorToken.kind === ts4.SyntaxKind.EqualsToken) {
const left = node.left;
const right = node.right;
if (ts4.isIdentifier(left) && this.checker.getSymbolAtLocation(left) === symbol) {
return ts4.isCallExpression(right) && getCalleeName(right) === "__decorate" ? right : null;
}
return this.findDecoratedVariableValue(right, symbol);
}
return node.forEachChild((node2) => this.findDecoratedVariableValue(node2, symbol)) || null;
}
getStaticProperty(symbol, propertyName) {
var _a, _b, _c, _d;
return ((_a = symbol.implementation.exports) == null ? void 0 : _a.get(propertyName)) || ((_c = (_b = symbol.adjacent) == null ? void 0 : _b.exports) == null ? void 0 : _c.get(propertyName)) || ((_d = symbol.declaration.exports) == null ? void 0 : _d.get(propertyName));
}
acquireDecoratorInfo(classSymbol) {
const decl = classSymbol.declaration.valueDeclaration;
if (this.decoratorCache.has(decl)) {
return this.decoratorCache.get(decl);
}
const staticProps = this.computeDecoratorInfoFromStaticProperties(classSymbol);
const helperCalls = this.computeDecoratorInfoFromHelperCalls(classSymbol);
const decoratorInfo = {
classDecorators: staticProps.classDecorators || helperCalls.classDecorators,
memberDecorators: staticProps.memberDecorators || helperCalls.memberDecorators,
constructorParamInfo: staticProps.constructorParamInfo || helperCalls.constructorParamInfo
};
this.decoratorCache.set(decl, decoratorInfo);
return decoratorInfo;
}
computeDecoratorInfoFromStaticProperties(classSymbol) {
let classDecorators = null;
let memberDecorators = null;
let constructorParamInfo = null;
const decoratorsProperty = this.getStaticProperty(classSymbol, DECORATORS);
if (decoratorsProperty !== void 0) {
classDecorators = this.getClassDecoratorsFromStaticProperty(decoratorsProperty);
}
const propDecoratorsProperty = this.getStaticProperty(classSymbol, PROP_DECORATORS);
if (propDecoratorsProperty !== void 0) {
memberDecorators = this.getMemberDecoratorsFromStaticProperty(propDecoratorsProperty);
}
const constructorParamsProperty = this.getStaticProperty(classSymbol, CONSTRUCTOR_PARAMS);
if (constructorParamsProperty !== void 0) {
constructorParamInfo = this.getParamInfoFromStaticProperty(constructorParamsProperty);
}
return { classDecorators, memberDecorators, constructorParamInfo };
}
getClassDecoratorsFromStaticProperty(decoratorsSymbol) {
const decoratorsIdentifier = decoratorsSymbol.valueDeclaration;
if (decoratorsIdentifier && decoratorsIdentifier.parent) {
if (ts4.isBinaryExpression(decoratorsIdentifier.parent) && decoratorsIdentifier.parent.operatorToken.kind === ts4.SyntaxKind.EqualsToken) {
const decoratorsArray = decoratorsIdentifier.parent.right;
return this.reflectDecorators(decoratorsArray).filter((decorator) => this.isFromCore(decorator));
}
}
return null;
}
getMembersOfSymbol(symbol) {
const members = [];
const { memberDecorators } = this.acquireDecoratorInfo(symbol);
const decoratorsMap = new Map(memberDecorators);
if (symbol.implementation.members) {
symbol.implementation.members.forEach((value, key) => {
const decorators = decoratorsMap.get(key);
const reflectedMembers = this.reflectMembers(value, decorators);
if (reflectedMembers) {
decoratorsMap.delete(key);
members.push(...reflectedMembers);
}
});
}
if (symbol.implementation.exports) {
symbol.implementation.exports.forEach((value, key) => {
const decorators = decoratorsMap.get(key);
const reflectedMembers = this.reflectMembers(value, decorators, true);
if (reflectedMembers) {
decoratorsMap.delete(key);
members.push(...reflectedMembers);
}
});
}
if (ts4.isVariableDeclaration(symbol.declaration.valueDeclaration)) {
if (symbol.declaration.exports) {
symbol.declaration.exports.forEach((value, key) => {
const decorators = decoratorsMap.get(key);
const reflectedMembers = this.reflectMembers(value, decorators, true);
if (reflectedMembers) {
decoratorsMap.delete(key);
members.push(...reflectedMembers);
}
});
}
}
if (symbol.adjacent !== void 0) {
if (ts4.isVariableDeclaration(symbol.adjacent.valueDeclaration)) {
if (symbol.adjacent.exports !== void 0) {
symbol.adjacent.exports.forEach((value, key) => {
const decorators = decoratorsMap.get(key);
const reflectedMembers = this.reflectMembers(value, decorators, true);
if (reflectedMembers) {
decoratorsMap.delete(key);
members.push(...reflectedMembers);
}
});
}
}
}
decoratorsMap.forEach((value, key) => {
members.push({
implementation: null,
decorators: value,
isStatic: false,
kind: ClassMemberKind.Property,
name: key,
nameNode: null,
node: null,
type: null,
value: null
});
});
return members;
}
getMemberDecoratorsFromStaticProperty(decoratorsProperty) {
const memberDecorators = /* @__PURE__ */ new Map();
const propDecoratorsMap = getPropertyValueFromSymbol(decoratorsProperty);
if (propDecoratorsMap && ts4.isObjectLiteralExpression(propDecoratorsMap)) {
const propertiesMap = reflectObjectLiteral(propDecoratorsMap);
propertiesMap.forEach((value, name) => {
const decorators = this.reflectDecorators(value).filter((decorator) => this.isFromCore(decorator));
if (decorators.length) {
memberDecorators.set(name, decorators);
}
});
}
return memberDecorators;
}
computeDecoratorInfoFromHelperCalls(classSymbol) {
let classDecorators = null;
const memberDecorators = /* @__PURE__ */ new Map();
const constructorParamInfo = [];
const getConstructorParamInfo = (index) => {
let param = constructorParamInfo[index];
if (param === void 0) {
param = constructorParamInfo[index] = { decorators: null, typeExpression: null };
}
return param;
};
const helperCalls = this.getHelperCallsForClass(classSymbol, ["__decorate"]);
const outerDeclaration = classSymbol.declaration.valueDeclaration;
const innerDeclaration = classSymbol.implementation.valueDeclaration;
const adjacentDeclaration = this.getAdjacentNameOfClassSymbol(classSymbol).parent;
const matchesClass = (identifier) => {
const decl = this.getDeclarationOfIdentifier(identifier);
return decl !== null && (decl.node === adjacentDeclaration || decl.node === outerDeclaration || decl.node === innerDeclaration);
};
for (const helperCall of helperCalls) {
if (isClassDecorateCall(helperCall, matchesClass)) {
const helperArgs = helperCall.arguments[0];
for (const element of helperArgs.elements) {
const entry = this.reflectDecorateHelperEntry(element);
if (entry === null) {
continue;
}
if (entry.type === "decorator") {
if (this.isFromCore(entry.decorator)) {
(classDecorators || (classDecorators = [])).push(entry.decorator);
}
} else if (entry.type === "param:decorators") {
const param = getConstructorParamInfo(entry.index);
(param.decorators || (param.decorators = [])).push(entry.decorator);
} else if (entry.type === "params") {
entry.types.forEach((type, index) => getConstructorParamInfo(index).typeExpression = type);
}
}
} else if (isMemberDecorateCall(helperCall, matchesClass)) {
const helperArgs = helperCall.arguments[0];
const memberName = helperCall.arguments[2].text;
for (const element of helperArgs.elements) {
const entry = this.reflectDecorateHelperEntry(element);
if (entry === null) {
continue;
}
if (entry.type === "decorator") {
if (this.isFromCore(entry.decorator)) {
const decorators = memberDecorators.has(memberName) ? memberDecorators.get(memberName) : [];
decorators.push(entry.decorator);
memberDecorators.set(memberName, decorators);
}
} else {
}
}
}
}
return { classDecorators, memberDecorators, constructorParamInfo };
}
reflectDecorateHelperEntry(expression) {
if (!ts4.isCallExpression(expression)) {
return null;
}
const call = expression;
const helperName = getCalleeName(call);
if (helperName === "__metadata") {
const key = call.arguments[0];
if (key === void 0 || !ts4.isStringLiteral(key) || key.text !== "design:paramtypes") {
return null;
}
const value = call.arguments[1];
if (value === void 0 || !ts4.isArrayLiteralExpression(value)) {
return null;
}
return {
type: "params",
types: Array.from(value.elements)
};
}
if (helperName === "__param") {
const indexArg = call.arguments[0];
const index = indexArg && ts4.isNumericLiteral(indexArg) ? parseInt(indexArg.text, 10) : NaN;
if (isNaN(index)) {
return null;
}
const decoratorCall = call.arguments[1];
if (decoratorCall === void 0 || !ts4.isCallExpression(decoratorCall)) {
return null;
}
const decorator2 = this.reflectDecoratorCall(decoratorCall);
if (decorator2 === null) {
return null;
}
return {
type: "param:decorators",
index,
decorator: decorator2
};
}
const decorator = this.reflectDecoratorCall(call);
if (decorator === null) {
return null;
}
return {
type: "decorator",
decorator
};
}
reflectDecoratorCall(call) {
const decoratorExpression = call.expression;
if (!isDecoratorIdentifier(decoratorExpression)) {
return null;
}
const decoratorIdentifier = ts4.isIdentifier(decoratorExpression) ? decoratorExpression : decoratorExpression.name;
return {
name: decoratorIdentifier.text,
identifier: decoratorExpression,
import: this.getImportOfIdentifier(decoratorIdentifier),
node: call,
args: Array.from(call.arguments)
};
}
getHelperCall(statement, helperNames) {
if ((ts4.isExpressionStatement(statement) || ts4.isReturnStatement(statement)) && statement.expression) {
let expression = statement.expression;
while (isAssignment2(expression)) {
expression = expression.right;
}
if (ts4.isCallExpression(expression)) {
const calleeName = getCalleeName(expression);
if (calleeName !== null && helperNames.includes(calleeName)) {
return expression;
}
}
}
return null;
}
reflectDecorators(decoratorsArray) {
const decorators = [];
if (ts4.isArrayLiteralExpression(decoratorsArray)) {
decoratorsArray.elements.forEach((node) => {
if (ts4.isObjectLiteralExpression(node)) {
const decorator = reflectObjectLiteral(node);
if (decorator.has("type")) {
let decoratorType = decorator.get("type");
if (isDecoratorIdentifier(decoratorType)) {
const decoratorIdentifier = ts4.isIdentifier(decoratorType) ? decoratorType : decoratorType.name;
decorators.push({
name: decoratorIdentifier.text,
identifier: decoratorType,
import: this.getImportOfIdentifier(decoratorIdentifier),
node,
args: getDecoratorArgs(node)
});
}
}
}
});
}
return decorators;
}
reflectMembers(symbol, decorators, isStatic) {
if (symbol.flags & ts4.SymbolFlags.Accessor) {
const members = [];
const setter = symbol.declarations && symbol.declarations.find(ts4.isSetAccessor);
const getter = symbol.declarations && symbol.declarations.find(ts4.isGetAccessor);
const setterMember = setter && this.reflectMember(setter, ClassMemberKind.Setter, decorators, isStatic);
if (setterMember) {
members.push(setterMember);
decorators = void 0;
}
const getterMember = getter && this.reflectMember(getter, ClassMemberKind.Getter, decorators, isStatic);
if (getterMember) {
members.push(getterMember);
}
return members;
}
let kind = null;
if (symbol.flags & ts4.SymbolFlags.Method) {
kind = ClassMemberKind.Method;
} else if (symbol.flags & ts4.SymbolFlags.Property) {
kind = ClassMemberKind.Property;
}
const node = symbol.valueDeclaration || symbol.declarations && symbol.declarations[0];
if (!node) {
return null;
}
const member = this.reflectMember(node, kind, decorators, isStatic);
if (!member) {
return null;
}
return [member];
}
reflectMember(node, kind, decorators, isStatic) {
let value = null;
let name = null;
let nameNode = null;
if (!isClassMemberType(node)) {
return null;
}
if (isStatic && isPropertyAccess(node)) {
name = node.name.text;
value = kind === ClassMemberKind.Property ? node.parent.right : null;
} else if (isThisAssignment(node)) {
kind = ClassMemberKind.Property;
name = node.left.name.text;
value = node.right;
isStatic = false;
} else if (ts4.isConstructorDeclaration(node)) {
kind = ClassMemberKind.Constructor;
name = "constructor";
isStatic = false;
}
if (kind === null) {
this.logger.warn(`Unknown member type: "${node.getText()}`);
return null;
}
if (!name) {
if (isNamedDeclaration(node)) {
name = node.name.text;
nameNode = node.name;
} else {
return null;
}
}
if (isStatic === void 0) {
const modifiers = getModifiers(node);
isStatic = modifiers !== void 0 && modifiers.some((mod) => mod.kind === ts4.SyntaxKind.StaticKeyword);
}
const type = node.type || null;
return {
node,
implementation: node,
kind,
type,
name,
nameNode,
value,
isStatic,
decorators: decorators || []
};
}
getConstructorParameterDeclarations(classSymbol) {
const members = classSymbol.implementation.members;
if (members && members.has(CONSTRUCTOR)) {
const constructorSymbol = members.get(CONSTRUCTOR);
const constructor = constructorSymbol.declarations && constructorSymbol.declarations[0];
if (!constructor) {
return [];
}
if (constructor.parameters.length > 0) {
return Array.from(constructor.parameters);
}
if (isSynthesizedConstructor(constructor)) {
return null;
}
return [];
}
return null;
}
getConstructorParamInfo(classSymbol, parameterNodes) {
const { constructorParamInfo } = this.acquireDecoratorInfo(classSymbol);
return parameterNodes.map((node, index) => {
const { decorators, typeExpression } = constructorParamInfo[index] ? constructorParamInfo[index] : { decorators: null, typeExpression: null };
const nameNode = node.name;
const typeValueReference = this.typeToValue(typeExpression);
return {
name: getNameText(nameNode),
nameNode,
typeValueReference,
typeNode: null,
decorators
};
});
}
typeToValue(typeExpression) {
if (typeExpression === null) {
return {
kind: 2,
reason: { kind: 0 }
};
}
const imp = this.getImportOfExpression(typeExpression);
const decl = this.getDeclarationOfExpression(typeExpression);
if (imp === null || decl === null) {
return {
kind: 0,
expression: typeExpression,
defaultImportStatement: null
};
}
return {
kind: 1,
valueDeclaration: decl.node,
moduleName: imp.from,
importedName: imp.name,
nestedPath: null
};
}
getImportOfExpression(expression) {
if (ts4.isIdentifier(expression)) {
return this.getImportOfIdentifier(expression);
} else if (ts4.isPropertyAccessExpression(expression) && ts4.isIdentifier(expression.name)) {
return this.getImportOfIdentifier(expression.name);
} else {
return null;
}
}
getParamInfoFromStaticProperty(paramDecoratorsProperty) {
const paramDecorators = getPropertyValueFromSymbol(paramDecoratorsProperty);
if (paramDecorators) {
const container = ts4.isArrowFunction(paramDecorators) ? paramDecorators.body : paramDecorators;
if (ts4.isArrayLiteralExpression(container)) {
const elements = container.elements;
return elements.map((element) => ts4.isObjectLiteralExpression(element) ? reflectObjectLiteral(element) : null).map((paramInfo) => {
const typeExpression = paramInfo && paramInfo.has("type") ? paramInfo.get("type") : null;
const decoratorInfo = paramInfo && paramInfo.has("decorators") ? paramInfo.get("decorators") : null;
const decorators = decoratorInfo && this.reflectDecorators(decoratorInfo).filter((decorator) => this.isFromCore(decorator));
return { typeExpression, decorators };
});
} else if (paramDecorators !== void 0) {
this.logger.warn("Invalid constructor parameter decorator in " + paramDecorators.getSourceFile().fileName + ":\n", paramDecorators.getText());
}
}
return null;
}
getHelperCallsForClass(classSymbol, helperNames) {
return this.getStatementsForClass(classSymbol).map((statement) => this.getHelperCall(statement, helperNames)).filter(isDefined);
}
getStatementsForClass(classSymbol) {
const classNode = classSymbol.implementation.valueDeclaration;
if (isTopLevel(classNode)) {
return this.getModuleStatements(classNode.getSourceFile());
}
const statement = getContainingStatement(classNode);
if (ts4.isBlock(statement.parent)) {
return Array.from(statement.parent.statements);
}
throw new Error(`Unable to find adjacent statements for ${classSymbol.name}`);
}
isFromCore(decorator) {
if (this.isCore) {
return !decorator.import || /^\./.test(decorator.import.from);
} else {
return !!decorator.import && decorator.import.from === "@angular/core";
}
}
computePublicDtsDeclarationMap(src, dts) {
const declarationMap = /* @__PURE__ */ new Map();
const dtsDeclarationMap = /* @__PURE__ */ new Map();
const rootDts = getRootFileOrFail(dts);
this.collectDtsExportedDeclarations(dtsDeclarationMap, rootDts, dts.program.getTypeChecker());
const rootSrc = getRootFileOrFail(src);
this.collectSrcExportedDeclarations(declarationMap, dtsDeclarationMap, rootSrc);
return declarationMap;
}
computePrivateDtsDeclarationMap(src, dts) {
const declarationMap = /* @__PURE__ */ new Map();
const dtsDeclarationMap = /* @__PURE__ */ new Map();
const typeChecker = dts.program.getTypeChecker();
const dtsFiles = getNonRootPackageFiles(dts);
for (const dtsFile of dtsFiles) {
this.collectDtsExportedDeclarations(dtsDeclarationMap, dtsFile, typeChecker);
}
const srcFiles = getNonRootPackageFiles(src);
for (const srcFile of srcFiles) {
this.collectSrcExportedDeclarations(declarationMap, dtsDeclarationMap, srcFile);
}
return declarationMap;
}
collectDtsExportedDeclarations(dtsDeclarationMap, srcFile, checker) {
const srcModule = srcFile && checker.getSymbolAtLocation(srcFile);
const moduleExports = srcModule && checker.getExportsOfModule(srcModule);
if (moduleExports) {
moduleExports.forEach((exportedSymbol) => {
const name = exportedSymbol.name;
if (exportedSymbol.flags & ts4.SymbolFlags.Alias) {
exportedSymbol = checker.getAliasedSymbol(exportedSymbol);
}
const declaration = exportedSymbol.valueDeclaration;
if (declaration && !dtsDeclarationMap.has(name)) {
dtsDeclarationMap.set(name, declaration);
}
});
}
}
collectSrcExportedDeclarations(declarationMap, dtsDeclarationMap, srcFile) {
const fileExports = this.getExportsOfModule(srcFile);
if (fileExports !== null) {
for (const [exportName, { node: declarationNode }] of fileExports) {
if (dtsDeclarationMap.has(exportName)) {
declarationMap.set(declarationNode, dtsDeclarationMap.get(exportName));
}
}
}
}
getDeclarationOfExpression(expression) {
if (ts4.isIdentifier(expression)) {
return this.getDeclarationOfIdentifier(expression);
}
if (!ts4.isPropertyAccessExpression(expression) || !ts4.isIdentifier(expression.expression)) {
return null;
}
const namespaceDecl = this.getDeclarationOfIdentifier(expression.expression);
if (!namespaceDecl || !ts4.isSourceFile(namespaceDecl.node)) {
return null;
}
const namespaceExports = this.getExportsOfModule(namespaceDecl.node);
if (namespaceExports === null) {
return null;
}
if (!namespaceExports.has(expression.name.text)) {
return null;
}
const exportDecl = namespaceExports.get(expression.name.text);
return { ...exportDecl, viaModule: namespaceDecl.viaModule };
}
isJavaScriptObjectDeclaration(decl) {
const node = decl.node;
if (!ts4.isVariableDeclaration(node) || !ts4.isIdentifier(node.name) || node.name.text !== "Object" || node.type === void 0) {
return false;
}
const typeNode = node.type;
if (!ts4.isTypeReferenceNode(typeNode) || !ts4.isIdentifier(typeNode.typeName) || typeNode.typeName.text !== "ObjectConstructor") {
return false;
}
return this.src.program.isSourceFileDefaultLibrary(node.getSourceFile());
}
resolveEnumMembers(declaration) {
if (declaration.initializer !== void 0)
return null;
const variableStmt = declaration.parent.parent;
if (!ts4.isVariableStatement(variableStmt))
return null;
const block = variableStmt.parent;
if (!ts4.isBlock(block) && !ts4.isSourceFile(block))
return null;
const declarationIndex = block.statements.findIndex((statement) => statement === variableStmt);
if (declarationIndex === -1 || declarationIndex === block.statements.length - 1)
return null;
const subsequentStmt = block.statements[declarationIndex + 1];
if (!ts4.isExpressionStatement(subsequentStmt))
return null;
const iife = stripParentheses(subsequentStmt.expression);
if (!ts4.isCallExpression(iife) || !isEnumDeclarationIife(iife))
return null;
const fn = stripParentheses(iife.expression);
if (!ts4.isFunctionExpression(fn))
return null;
return this.reflectEnumMembers(fn);
}
reflectEnumMembers(fn) {
if (fn.parameters.length !== 1)
return null;
const enumName = fn.parameters[0].name;
if (!ts4.isIdentifier(enumName))
return null;
const enumMembers = [];
for (const statement of fn.body.statements) {
const enumMember = this.reflectEnumMember(enumName, statement);
if (enumMember === null) {
return null;
}
enumMembers.push(enumMember);
}
return enumMembers;
}
reflectEnumMember(enumName, statement) {
if (!ts4.isExpressionStatement(statement))
return null;
const expression = statement.expression;
if (!isEnumAssignment(enumName, expression)) {
return null;
}
const assignment = reflectEnumAssignment(expression);
if (assignment != null) {
return assignment;
}
const innerExpression = expression.left.argumentExpression;
if (!isEnumAssignment(enumName, innerExpression)) {
return null;
}
return reflectEnumAssignment(innerExpression);
}
getAdjacentNameOfClassSymbol(classSymbol) {
if (classSymbol.adjacent !== void 0) {
return this.getNameFromClassSymbolDeclaration(classSymbol, classSymbol.adjacent.valueDeclaration);
} else {
return this.getNameFromClassSymbolDeclaration(classSymbol, classSymbol.implementation.valueDeclaration);
}
}
};
function isEnumDeclarationIife(iife) {
if (iife.arguments.length !== 1)
return false;
const arg = iife.arguments[0];
if (!ts4.isBinaryExpression(arg) || arg.operatorToken.kind !== ts4.SyntaxKind.BarBarToken || !ts4.isParenthesizedExpression(arg.right)) {
return false;
}
const right = arg.right.expression;
if (!ts4.isBinaryExpression(right) || right.operatorToken.kind !== ts4.SyntaxKind.EqualsToken) {
return false;
}
if (!ts4.isObjectLiteralExpression(right.right) || right.right.properties.length !== 0) {
return false;
}
return true;
}
function isEnumAssignment(enumName, expression) {
if (!ts4.isBinaryExpression(expression) || expression.operatorToken.kind !== ts4.SyntaxKind.EqualsToken || !ts4.isElementAccessExpression(expression.left)) {
return false;
}
const enumIdentifier = expression.left.expression;
return ts4.isIdentifier(enumIdentifier) && enumIdentifier.text === enumName.text;
}
function reflectEnumAssignment(expression) {
const memberName = expression.left.argumentExpression;
if (!ts4.isPropertyName(memberName))
return null;
return { name: memberName, initializer: expression.right };
}
function isAssignmentStatement(statement) {
return ts4.isExpressionStatement(statement) && isAssignment2(statement.expression) && ts4.isIdentifier(statement.expression.left);
}
function getIifeBody(expression) {
const call = stripParentheses(expression);
if (!ts4.isCallExpression(call)) {
return void 0;
}
const fn = stripParentheses(call.expression);
if (!ts4.isFunctionExpression(fn) && !ts4.isArrowFunction(fn)) {
return void 0;
}
return fn.body;
}
function isAssignment2(node) {
return ts4.isBinaryExpression(node) && node.operatorToken.kind === ts4.SyntaxKind.EqualsToken;
}
function isClassDecorateCall(call, matches) {
const helperArgs = call.arguments[0];
if (helperArgs === void 0 || !ts4.isArrayLiteralExpression(helperArgs)) {
return false;
}
const target = call.arguments[1];
return target !== void 0 && ts4.isIdentifier(target) && matches(target);
}
function isMemberDecorateCall(call, matches) {
const helperArgs = call.arguments[0];
if (helperArgs === void 0 || !ts4.isArrayLiteralExpression(helperArgs)) {
return false;
}
const target = call.arguments[1];
if (target === void 0 || !ts4.isPropertyAccessExpression(target) || !ts4.isIdentifier(target.expression) || !matches(target.expression) || target.name.text !== "prototype") {
return false;
}
const memberName = call.arguments[2];
return memberName !== void 0 && ts4.isStringLiteral(memberName);
}
function getPropertyValueFromSymbol(propSymbol) {
const propIdentifier = propSymbol.valueDeclaration;
const parent = propIdentifier && propIdentifier.parent;
return parent && ts4.isBinaryExpression(parent) ? parent.right : void 0;
}
function getCalleeName(call) {
if (ts4.isIdentifier(call.expression)) {
return stripDollarSuffix(call.expression.text);
}
if (ts4.isPropertyAccessExpression(call.expression)) {
return stripDollarSuffix(call.expression.name.text);
}
return null;
}
function isInitializedVariableClassDeclaration(node) {
return isNamedVariableDeclaration(node) && node.initializer !== void 0;
}
function skipClassAliases(node) {
let expression = node.initializer;
while (isAssignment2(expression)) {
expression = expression.right;
}
return expression;
}
function getInnerClassDeclaration(expression) {
if (ts4.isClassExpression(expression) && hasNameIdentifier(expression)) {
return expression;
}
const iifeBody = getIifeBody(expression);
if (iifeBody === void 0) {
return null;
}
if (!ts4.isBlock(iifeBody)) {
return ts4.isClassExpression(iifeBody) && isNamedDeclaration(iifeBody) ? iifeBody : null;
} else {
for (const statement of iifeBody.statements) {
if (isNamedClassDeclaration(statement) || isNamedFunctionDeclaration(statement)) {
return statement;
}
if (ts4.isVariableStatement(statement)) {
for (const declaration of statement.declarationList.declarations) {
if (isInitializedVariableClassDeclaration(declaration)) {
const expression2 = skipClassAliases(declaration);
if (ts4.isClassExpression(expression2) && hasNameIdentifier(expression2)) {
return expression2;
}
}
}
}
}
}
return null;
}
function getDecoratorArgs(node) {
const argsProperty = node.properties.filter(ts4.isPropertyAssignment).find((property2) => getNameText(property2.name) === "args");
const argsExpression = argsProperty && argsProperty.initializer;
return argsExpression && ts4.isArrayLiteralExpression(argsExpression) ? Array.from(argsExpression.elements) : [];
}
function isPropertyAccess(node) {
return !!node.parent && ts4.isBinaryExpression(node.parent) && ts4.isPropertyAccessExpression(node);
}
function isThisAssignment(node) {
return ts4.isBinaryExpression(node) && ts4.isPropertyAccessExpression(node.left) && node.left.expression.kind === ts4.SyntaxKind.ThisKeyword;
}
function isNamedDeclaration(node) {
const anyNode = node;
return !!anyNode.name && ts4.isIdentifier(anyNode.name);
}
function isClassMemberType(node) {
return (ts4.isClassElement(node) || isPropertyAccess(node) || ts4.isBinaryExpression(node)) && !ts4.isIndexSignatureDeclaration(node);
}
function getFarLeftHandSideOfAssignment(declaration) {
let node = declaration.parent;
if (isAssignment2(node) && ts4.isIdentifier(node.left)) {
node = node.parent;
}
return ts4.isVariableDeclaration(node) ? node : void 0;
}
function getContainingVariableDeclaration(node) {
node = node.parent;
while (node !== void 0) {
if (isNamedVariableDeclaration(node)) {
return node;
}
node = node.parent;
}
return void 0;
}
function isSynthesizedConstructor(constructor) {
if (!constructor.body)
return false;
const firstStatement = constructor.body.statements[0];
if (!firstStatement || !ts4.isExpressionStatement(firstStatement))
return false;
return isSynthesizedSuperCall(firstStatement.expression);
}
function isSynthesizedSuperCall(expression) {
if (!ts4.isCallExpression(expression))
return false;
if (expression.expression.kind !== ts4.SyntaxKind.SuperKeyword)
return false;
if (expression.arguments.length !== 1)
return false;
const argument = expression.arguments[0];
return ts4.isSpreadElement(argument) && ts4.isIdentifier(argument.expression) && argument.expression.text === "arguments";
}
function getContainingStatement(node) {
while (node.parent) {
if (ts4.isBlock(node.parent) || ts4.isSourceFile(node.parent)) {
break;
}
node = node.parent;
}
return node;
}
function getRootFileOrFail(bundle) {
const rootFile = bundle.program.getSourceFile(bundle.path);
if (rootFile === void 0) {
throw new Error(`The given rootPath ${rootFile} is not a file of the program.`);
}
return rootFile;
}
function getNonRootPackageFiles(bundle) {
const rootFile = bundle.program.getSourceFile(bundle.path);
return bundle.program.getSourceFiles().filter((f) => f !== rootFile && isWithinPackage(bundle.package, absoluteFromSourceFile(f)));
}
function isTopLevel(node) {
while (node = node.parent) {
if (ts4.isBlock(node)) {
return false;
}
}
return true;
}
function getOuterNodeFromInnerDeclaration(node) {
if (!ts4.isFunctionDeclaration(node) && !ts4.isClassDeclaration(node) && !ts4.isVariableStatement(node)) {
return null;
}
let outerNode = node.parent;
if (!outerNode || !ts4.isBlock(outerNode))
return null;
outerNode = outerNode.parent;
if (!outerNode || !ts4.isFunctionExpression(outerNode) && !ts4.isArrowFunction(outerNode)) {
return null;
}
outerNode = outerNode.parent;
if (outerNode && ts4.isParenthesizedExpression(outerNode))
outerNode = outerNode.parent;
if (!outerNode || !ts4.isCallExpression(outerNode))
return null;
outerNode = outerNode.parent;
if (outerNode && ts4.isParenthesizedExpression(outerNode))
outerNode = outerNode.parent;
while (isAssignment2(outerNode.parent)) {
outerNode = outerNode.parent;
}
return outerNode;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/esm5_host.mjs
import ts5 from "typescript";
var Esm5ReflectionHost = class extends Esm2015ReflectionHost {
getBaseClassExpression(clazz) {
const superBaseClassExpression = super.getBaseClassExpression(clazz);
if (superBaseClassExpression !== null) {
return superBaseClassExpression;
}
const iife = getIifeFn(this.getClassSymbol(clazz));
if (iife === null)
return null;
if (iife.parameters.length !== 1 || !isSuperIdentifier(iife.parameters[0].name)) {
return null;
}
if (!ts5.isCallExpression(iife.parent)) {
return null;
}
return iife.parent.arguments[0];
}
getDeclarationOfIdentifier(id) {
const declaration = super.getDeclarationOfIdentifier(id);
if (declaration === null) {
const nonEmittedNorImportedTsHelperDeclaration = getTsHelperFnFromIdentifier(id);
if (nonEmittedNorImportedTsHelperDeclaration !== null) {
return {
kind: 1,
node: id,
known: nonEmittedNorImportedTsHelperDeclaration,
viaModule: null
};
}
}
if (declaration === null || declaration.node === null || declaration.known !== null) {
return declaration;
}
if (!ts5.isVariableDeclaration(declaration.node) || declaration.node.initializer !== void 0 || !ts5.isBlock(declaration.node.parent.parent.parent)) {
return declaration;
}
const block = declaration.node.parent.parent.parent;
const aliasSymbol = this.checker.getSymbolAtLocation(declaration.node.name);
for (let i = 0; i < block.statements.length; i++) {
const statement = block.statements[i];
if (isAssignmentStatement(statement) && ts5.isIdentifier(statement.expression.left) && ts5.isIdentifier(statement.expression.right) && this.checker.getSymbolAtLocation(statement.expression.left) === aliasSymbol) {
return this.getDeclarationOfIdentifier(statement.expression.right);
}
}
return declaration;
}
getDefinitionOfFunction(node) {
const definition = super.getDefinitionOfFunction(node);
if (definition === null) {
return null;
}
if (definition.body !== null) {
let lookingForInitializers = true;
const statements = definition.body.filter((s) => {
lookingForInitializers = lookingForInitializers && captureParamInitializer(s, definition.parameters);
return !lookingForInitializers;
});
definition.body = statements;
}
return definition;
}
detectKnownDeclaration(decl) {
decl = super.detectKnownDeclaration(decl);
if (decl.known === null && decl.node !== null) {
decl.known = getTsHelperFnFromDeclaration(decl.node);
}
return decl;
}
getClassSymbolFromInnerDeclaration(declaration) {
const classSymbol = super.getClassSymbolFromInnerDeclaration(declaration);
if (classSymbol !== void 0) {
return classSymbol;
}
if (!isNamedFunctionDeclaration(declaration)) {
return void 0;
}
const outerNode = getOuterNodeFromInnerDeclaration(declaration);
if (outerNode === null || !hasNameIdentifier(outerNode)) {
return void 0;
}
return this.createClassSymbol(outerNode.name, declaration);
}
getConstructorParameterDeclarations(classSymbol) {
const constructor = classSymbol.implementation.valueDeclaration;
if (!ts5.isFunctionDeclaration(constructor))
return null;
if (constructor.parameters.length > 0) {
return Array.from(constructor.parameters);
}
if (this.isSynthesizedConstructor(constructor)) {
return null;
}
return [];
}
getParamInfoFromStaticProperty(paramDecoratorsProperty) {
const paramDecorators = getPropertyValueFromSymbol(paramDecoratorsProperty);
const returnStatement = getReturnStatement(paramDecorators);
const expression = returnStatement ? returnStatement.expression : paramDecorators;
if (expression && ts5.isArrayLiteralExpression(expression)) {
const elements = expression.elements;
return elements.map(reflectArrayElement).map((paramInfo) => {
const typeExpression = paramInfo && paramInfo.has("type") ? paramInfo.get("type") : null;
const decoratorInfo = paramInfo && paramInfo.has("decorators") ? paramInfo.get("decorators") : null;
const decorators = decoratorInfo && this.reflectDecorators(decoratorInfo);
return { typeExpression, decorators };
});
} else if (paramDecorators !== void 0) {
this.logger.warn("Invalid constructor parameter decorator in " + paramDecorators.getSourceFile().fileName + ":\n", paramDecorators.getText());
}
return null;
}
reflectMembers(symbol, decorators, isStatic) {
const node = symbol.valueDeclaration || symbol.declarations && symbol.declarations[0];
const propertyDefinition = node && getPropertyDefinition(node);
if (propertyDefinition) {
const members2 = [];
if (propertyDefinition.setter) {
members2.push({
node,
implementation: propertyDefinition.setter,
kind: ClassMemberKind.Setter,
type: null,
name: symbol.name,
nameNode: null,
value: null,
isStatic: isStatic || false,
decorators: decorators || []
});
decorators = void 0;
}
if (propertyDefinition.getter) {
members2.push({
node,
implementation: propertyDefinition.getter,
kind: ClassMemberKind.Getter,
type: null,
name: symbol.name,
nameNode: null,
value: null,
isStatic: isStatic || false,
decorators: decorators || []
});
}
return members2;
}
const members = super.reflectMembers(symbol, decorators, isStatic);
members && members.forEach((member) => {
if (member && member.kind === ClassMemberKind.Method && member.isStatic && member.node && ts5.isPropertyAccessExpression(member.node) && member.node.parent && ts5.isBinaryExpression(member.node.parent) && ts5.isFunctionExpression(member.node.parent.right)) {
member.implementation = member.node.parent.right;
}
});
return members;
}
getStatementsForClass(classSymbol) {
const classDeclarationParent = classSymbol.implementation.valueDeclaration.parent;
return ts5.isBlock(classDeclarationParent) ? Array.from(classDeclarationParent.statements) : [];
}
isSynthesizedConstructor(constructor) {
if (!constructor.body)
return false;
const firstStatement = constructor.body.statements[0];
if (!firstStatement)
return false;
return this.isSynthesizedSuperThisAssignment(firstStatement) || this.isSynthesizedSuperReturnStatement(firstStatement);
}
isSynthesizedSuperThisAssignment(statement) {
if (!ts5.isVariableStatement(statement))
return false;
const variableDeclarations = statement.declarationList.declarations;
if (variableDeclarations.length !== 1)
return false;
const variableDeclaration = variableDeclarations[0];
if (!ts5.isIdentifier(variableDeclaration.name) || !variableDeclaration.name.text.startsWith("_this"))
return false;
const initializer = variableDeclaration.initializer;
if (!initializer)
return false;
return this.isSynthesizedDefaultSuperCall(initializer);
}
isSynthesizedSuperReturnStatement(statement) {
if (!ts5.isReturnStatement(statement))
return false;
const expression = statement.expression;
if (!expression)
return false;
return this.isSynthesizedDefaultSuperCall(expression);
}
isSynthesizedDefaultSuperCall(expression) {
if (!isBinaryExpr(expression, ts5.SyntaxKind.BarBarToken))
return false;
if (expression.right.kind !== ts5.SyntaxKind.ThisKeyword)
return false;
const left = expression.left;
if (isBinaryExpr(left, ts5.SyntaxKind.AmpersandAmpersandToken)) {
return isSuperNotNull(left.left) && this.isSuperApplyCall(left.right);
} else {
return this.isSuperApplyCall(left);
}
}
isSuperApplyCall(expression) {
if (!ts5.isCallExpression(expression) || expression.arguments.length !== 2)
return false;
const targetFn = expression.expression;
if (!ts5.isPropertyAccessExpression(targetFn))
return false;
if (!isSuperIdentifier(targetFn.expression))
return false;
if (targetFn.name.text !== "apply")
return false;
const thisArgument = expression.arguments[0];
if (thisArgument.kind !== ts5.SyntaxKind.ThisKeyword)
return false;
const argumentsExpr = expression.arguments[1];
if (isArgumentsIdentifier(argumentsExpr)) {
return true;
}
return this.isSpreadArgumentsExpression(argumentsExpr);
}
isSpreadArgumentsExpression(expression) {
const call = this.extractKnownHelperCall(expression);
if (call === null) {
return false;
}
if (call.helper === KnownDeclaration.TsHelperSpread) {
return call.args.length === 1 && isArgumentsIdentifier(call.args[0]);
} else if (call.helper === KnownDeclaration.TsHelperSpreadArray) {
if (call.args.length !== 2 && call.args.length !== 3) {
return false;
}
const firstArg = call.args[0];
if (!ts5.isArrayLiteralExpression(firstArg) || firstArg.elements.length !== 0) {
return false;
}
const secondArg = this.extractKnownHelperCall(call.args[1]);
if (secondArg === null || secondArg.helper !== KnownDeclaration.TsHelperRead) {
return false;
}
return secondArg.args.length === 1 && isArgumentsIdentifier(secondArg.args[0]);
} else {
return false;
}
}
extractKnownHelperCall(expression) {
if (!ts5.isCallExpression(expression)) {
return null;
}
const receiverExpr = expression.expression;
let receiver = null;
if (ts5.isIdentifier(receiverExpr)) {
receiver = this.getDeclarationOfIdentifier(receiverExpr);
} else if (ts5.isPropertyAccessExpression(receiverExpr) && ts5.isIdentifier(receiverExpr.name)) {
receiver = this.getDeclarationOfIdentifier(receiverExpr.name);
}
if (receiver === null || receiver.known === null) {
return null;
}
return {
helper: receiver.known,
args: expression.arguments
};
}
};
function getPropertyDefinition(node) {
if (!ts5.isCallExpression(node))
return null;
const fn = node.expression;
if (!ts5.isPropertyAccessExpression(fn) || !ts5.isIdentifier(fn.expression) || fn.expression.text !== "Object" || fn.name.text !== "defineProperty")
return null;
const descriptor = node.arguments[2];
if (!descriptor || !ts5.isObjectLiteralExpression(descriptor))
return null;
return {
setter: readPropertyFunctionExpression(descriptor, "set"),
getter: readPropertyFunctionExpression(descriptor, "get")
};
}
function readPropertyFunctionExpression(object, name) {
const property2 = object.properties.find((p) => ts5.isPropertyAssignment(p) && ts5.isIdentifier(p.name) && p.name.text === name);
return property2 && ts5.isFunctionExpression(property2.initializer) && property2.initializer || null;
}
function getReturnStatement(declaration) {
return declaration && ts5.isFunctionExpression(declaration) ? declaration.body.statements.find(ts5.isReturnStatement) : void 0;
}
function reflectArrayElement(element) {
return ts5.isObjectLiteralExpression(element) ? reflectObjectLiteral(element) : null;
}
function isArgumentsIdentifier(expression) {
return ts5.isIdentifier(expression) && expression.text === "arguments";
}
function isSuperNotNull(expression) {
return isBinaryExpr(expression, ts5.SyntaxKind.ExclamationEqualsEqualsToken) && isSuperIdentifier(expression.left);
}
function isBinaryExpr(expression, operator) {
return ts5.isBinaryExpression(expression) && expression.operatorToken.kind === operator;
}
function isSuperIdentifier(node) {
return ts5.isIdentifier(node) && node.text.startsWith("_super");
}
function captureParamInitializer(statement, parameters) {
if (ts5.isIfStatement(statement) && isUndefinedComparison(statement.expression) && ts5.isBlock(statement.thenStatement) && statement.thenStatement.statements.length === 1) {
const ifStatementComparison = statement.expression;
const thenStatement = statement.thenStatement.statements[0];
if (isAssignmentStatement(thenStatement)) {
const comparisonName = ifStatementComparison.left.text;
const assignmentName = thenStatement.expression.left.text;
if (comparisonName === assignmentName) {
const parameter = parameters.find((p) => p.name === comparisonName);
if (parameter) {
parameter.initializer = thenStatement.expression.right;
return true;
}
}
}
}
return false;
}
function isUndefinedComparison(expression) {
return ts5.isBinaryExpression(expression) && expression.operatorToken.kind === ts5.SyntaxKind.EqualsEqualsEqualsToken && ts5.isVoidExpression(expression.right) && ts5.isIdentifier(expression.left);
}
function getIifeFn(classSymbol) {
if (classSymbol === void 0) {
return null;
}
const innerDeclaration = classSymbol.implementation.valueDeclaration;
const iifeBody = innerDeclaration.parent;
if (!ts5.isBlock(iifeBody)) {
return null;
}
const iifeWrapper = iifeBody.parent;
return iifeWrapper && ts5.isFunctionExpression(iifeWrapper) ? iifeWrapper : null;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/umd_host.mjs
var UmdReflectionHost = class extends Esm5ReflectionHost {
constructor(logger, isCore, src, dts = null) {
super(logger, isCore, src, dts);
this.umdModules = new FactoryMap((sf) => this.computeUmdModule(sf));
this.umdExports = new FactoryMap((sf) => this.computeExportsOfUmdModule(sf));
this.umdImportPaths = new FactoryMap((param) => this.computeImportPath(param));
this.program = src.program;
this.compilerHost = src.host;
}
getImportOfIdentifier(id) {
const nsIdentifier = findNamespaceOfIdentifier(id);
const importParameter = nsIdentifier && this.findUmdImportParameter(nsIdentifier);
const from = importParameter && this.getUmdImportPath(importParameter);
return from !== null ? { from, name: id.text } : null;
}
getDeclarationOfIdentifier(id) {
const declaration = this.getExportsDeclaration(id) || this.getUmdModuleDeclaration(id) || this.getUmdDeclaration(id);
if (declaration !== null) {
return declaration;
}
const superDeclaration = super.getDeclarationOfIdentifier(id);
if (superDeclaration === null) {
return null;
}
const outerNode = getOuterNodeFromInnerDeclaration(superDeclaration.node);
if (outerNode === null) {
return superDeclaration;
}
if (!isExportsAssignment(outerNode)) {
return superDeclaration;
}
return {
kind: 1,
node: outerNode.left,
implementation: outerNode.right,
known: null,
viaModule: null
};
}
getExportsOfModule(module) {
return super.getExportsOfModule(module) || this.umdExports.get(module.getSourceFile());
}
getUmdModule(sourceFile) {
if (sourceFile.isDeclarationFile) {
return null;
}
return this.umdModules.get(sourceFile);
}
getUmdImportPath(importParameter) {
return this.umdImportPaths.get(importParameter);
}
getModuleStatements(sourceFile) {
const umdModule = this.getUmdModule(sourceFile);
return umdModule !== null ? Array.from(umdModule.factoryFn.body.statements) : [];
}
getClassSymbolFromOuterDeclaration(declaration) {
const superSymbol = super.getClassSymbolFromOuterDeclaration(declaration);
if (superSymbol) {
return superSymbol;
}
if (!isExportsDeclaration(declaration)) {
return void 0;
}
let initializer = skipAliases(declaration.parent.right);
if (ts6.isIdentifier(initializer)) {
const implementation = this.getDeclarationOfIdentifier(initializer);
if (implementation !== null) {
const implementationSymbol = this.getClassSymbol(implementation.node);
if (implementationSymbol !== null) {
return implementationSymbol;
}
}
}
const innerDeclaration = getInnerClassDeclaration(initializer);
if (innerDeclaration !== null) {
return this.createClassSymbol(declaration.name, innerDeclaration);
}
return void 0;
}
getClassSymbolFromInnerDeclaration(declaration) {
const superClassSymbol = super.getClassSymbolFromInnerDeclaration(declaration);
if (superClassSymbol !== void 0) {
return superClassSymbol;
}
if (!isNamedFunctionDeclaration(declaration)) {
return void 0;
}
const outerNode = getOuterNodeFromInnerDeclaration(declaration);
if (outerNode === null || !isExportsAssignment(outerNode)) {
return void 0;
}
return this.createClassSymbol(outerNode.left.name, declaration);
}
addClassSymbolsFromStatement(classes, statement) {
super.addClassSymbolsFromStatement(classes, statement);
if (isExportsStatement(statement)) {
const classSymbol = this.getClassSymbol(statement.expression.left);
if (classSymbol) {
classes.set(classSymbol.implementation, classSymbol);
}
}
}
preprocessStatement(statement) {
super.preprocessStatement(statement);
if (!isExportsStatement(statement)) {
return;
}
const declaration = statement.expression.left;
const initializer = statement.expression.right;
if (!isAssignment2(initializer) || !ts6.isIdentifier(initializer.left) || !this.isClass(declaration)) {
return;
}
const aliasedIdentifier = initializer.left;
const aliasedDeclaration = this.getDeclarationOfIdentifier(aliasedIdentifier);
if (aliasedDeclaration === null || aliasedDeclaration.node === null) {
throw new Error(`Unable to locate declaration of ${aliasedIdentifier.text} in "${statement.getText()}"`);
}
this.aliasedClassDeclarations.set(aliasedDeclaration.node, declaration.name);
}
computeUmdModule(sourceFile) {
if (sourceFile.statements.length !== 1) {
throw new Error(`Expected UMD module file (${sourceFile.fileName}) to contain exactly one statement, but found ${sourceFile.statements.length}.`);
}
return parseStatementForUmdModule(sourceFile.statements[0]);
}
computeExportsOfUmdModule(sourceFile) {
const moduleMap = /* @__PURE__ */ new Map();
for (const statement of this.getModuleStatements(sourceFile)) {
if (isExportsStatement(statement)) {
const exportDeclaration = this.extractBasicUmdExportDeclaration(statement);
if (!moduleMap.has(exportDeclaration.name)) {
moduleMap.set(exportDeclaration.name, exportDeclaration.declaration);
}
} else if (isWildcardReexportStatement(statement)) {
const reexports = this.extractUmdWildcardReexports(statement, sourceFile);
for (const reexport of reexports) {
moduleMap.set(reexport.name, reexport.declaration);
}
} else if (isDefinePropertyReexportStatement(statement)) {
const exportDeclaration = this.extractUmdDefinePropertyExportDeclaration(statement);
if (exportDeclaration !== null) {
moduleMap.set(exportDeclaration.name, exportDeclaration.declaration);
}
}
}
return moduleMap;
}
computeImportPath(param) {
const umdModule = this.getUmdModule(param.getSourceFile());
if (umdModule === null) {
return null;
}
const imports = getImportsOfUmdModule(umdModule);
if (imports === null) {
return null;
}
let importPath = null;
for (const i of imports) {
this.umdImportPaths.set(i.parameter, i.path);
if (i.parameter === param) {
importPath = i.path;
}
}
return importPath;
}
extractBasicUmdExportDeclaration(statement) {
var _a;
const name = statement.expression.left.name.text;
const exportExpression = skipAliases(statement.expression.right);
const declaration = (_a = this.getDeclarationOfExpression(exportExpression)) != null ? _a : {
kind: 1,
node: statement.expression.left,
implementation: statement.expression.right,
known: null,
viaModule: null
};
return { name, declaration };
}
extractUmdWildcardReexports(statement, containingFile) {
const reexportArg = statement.expression.arguments[0];
const requireCall = isRequireCall(reexportArg) ? reexportArg : ts6.isIdentifier(reexportArg) ? findRequireCallReference(reexportArg, this.checker) : null;
let importPath = null;
if (requireCall !== null) {
importPath = requireCall.arguments[0].text;
} else if (ts6.isIdentifier(reexportArg)) {
const importParameter = this.findUmdImportParameter(reexportArg);
importPath = importParameter && this.getUmdImportPath(importParameter);
}
if (importPath === null) {
return [];
}
const importedFile = this.resolveModuleName(importPath, containingFile);
if (importedFile === void 0) {
return [];
}
const importedExports = this.getExportsOfModule(importedFile);
if (importedExports === null) {
return [];
}
const viaModule = stripExtension(importedFile.fileName);
const reexports = [];
importedExports.forEach((decl, name) => reexports.push({ name, declaration: { ...decl, viaModule } }));
return reexports;
}
extractUmdDefinePropertyExportDeclaration(statement) {
const args = statement.expression.arguments;
const name = args[1].text;
const getterFnExpression = extractGetterFnExpression(statement);
if (getterFnExpression === null) {
return null;
}
const declaration = this.getDeclarationOfExpression(getterFnExpression);
if (declaration !== null) {
return { name, declaration };
}
return {
name,
declaration: {
kind: 1,
node: args[1],
implementation: getterFnExpression,
known: null,
viaModule: null
}
};
}
findUmdImportParameter(id) {
const symbol = id && this.checker.getSymbolAtLocation(id) || null;
const declaration = symbol && symbol.valueDeclaration;
return declaration && ts6.isParameter(declaration) ? declaration : null;
}
getUmdDeclaration(id) {
const nsIdentifier = findNamespaceOfIdentifier(id);
if (nsIdentifier === null) {
return null;
}
if (nsIdentifier.parent.parent && isExportsAssignment(nsIdentifier.parent.parent)) {
const initializer = nsIdentifier.parent.parent.right;
if (ts6.isIdentifier(initializer)) {
return this.getDeclarationOfIdentifier(initializer);
}
return this.detectKnownDeclaration({
kind: 1,
node: nsIdentifier.parent.parent.left,
implementation: skipAliases(nsIdentifier.parent.parent.right),
viaModule: null,
known: null
});
}
const moduleDeclaration = this.getUmdModuleDeclaration(nsIdentifier);
if (moduleDeclaration === null || moduleDeclaration.node === null || !ts6.isSourceFile(moduleDeclaration.node)) {
return null;
}
const moduleExports = this.getExportsOfModule(moduleDeclaration.node);
if (moduleExports === null) {
return null;
}
const declaration = moduleExports.get(id.text);
if (!moduleExports.has(id.text)) {
return null;
}
const viaModule = declaration.viaModule === null ? moduleDeclaration.viaModule : declaration.viaModule;
return { ...declaration, viaModule, known: getTsHelperFnFromIdentifier(id) };
}
getExportsDeclaration(id) {
if (!isExportsIdentifier(id)) {
return null;
}
const exportsSymbol = this.checker.getSymbolsInScope(id, ts6.SymbolFlags.Variable).find((symbol) => symbol.name === "exports");
const node = (exportsSymbol == null ? void 0 : exportsSymbol.valueDeclaration) !== void 0 && !ts6.isFunctionExpression(exportsSymbol.valueDeclaration.parent) ? exportsSymbol.valueDeclaration : id.getSourceFile();
return {
kind: 0,
node,
viaModule: null,
known: null,
identity: null
};
}
getUmdModuleDeclaration(id) {
const importPath = this.getImportPathFromParameter(id) || this.getImportPathFromRequireCall(id);
if (importPath === null) {
return null;
}
const module = this.resolveModuleName(importPath, id.getSourceFile());
if (module === void 0) {
return null;
}
const viaModule = isExternalImport(importPath) ? importPath : null;
return { kind: 0, node: module, viaModule, known: null, identity: null };
}
getImportPathFromParameter(id) {
const importParameter = this.findUmdImportParameter(id);
if (importParameter === null) {
return null;
}
return this.getUmdImportPath(importParameter);
}
getImportPathFromRequireCall(id) {
const requireCall = findRequireCallReference(id, this.checker);
if (requireCall === null) {
return null;
}
return requireCall.arguments[0].text;
}
getDeclarationOfExpression(expression) {
const inner = getInnerClassDeclaration(expression);
if (inner !== null) {
const outer = getOuterNodeFromInnerDeclaration(inner);
if (outer !== null && isExportsAssignment(outer)) {
return {
kind: 1,
node: outer.left,
implementation: inner,
known: null,
viaModule: null
};
}
}
return super.getDeclarationOfExpression(expression);
}
resolveModuleName(moduleName, containingFile) {
if (this.compilerHost.resolveModuleNames) {
const moduleInfo = this.compilerHost.resolveModuleNames([moduleName], containingFile.fileName, void 0, void 0, this.program.getCompilerOptions())[0];
return moduleInfo && this.program.getSourceFile(absoluteFrom(moduleInfo.resolvedFileName));
} else {
const moduleInfo = ts6.resolveModuleName(moduleName, containingFile.fileName, this.program.getCompilerOptions(), this.compilerHost);
return moduleInfo.resolvedModule && this.program.getSourceFile(absoluteFrom(moduleInfo.resolvedModule.resolvedFileName));
}
}
};
function parseStatementForUmdModule(statement) {
const wrapper = getUmdWrapper(statement);
if (wrapper === null)
return null;
const factoryFnParamIndex = wrapper.fn.parameters.findIndex((parameter) => ts6.isIdentifier(parameter.name) && parameter.name.text === "factory");
if (factoryFnParamIndex === -1)
return null;
const factoryFn = stripParentheses(wrapper.call.arguments[factoryFnParamIndex]);
if (!factoryFn || !ts6.isFunctionExpression(factoryFn))
return null;
let factoryCalls = null;
return {
wrapperFn: wrapper.fn,
factoryFn,
get factoryCalls() {
if (factoryCalls === null) {
factoryCalls = parseUmdWrapperFunction(this.wrapperFn);
}
return factoryCalls;
}
};
}
function getUmdWrapper(statement) {
if (!ts6.isExpressionStatement(statement))
return null;
if (ts6.isParenthesizedExpression(statement.expression) && ts6.isCallExpression(statement.expression.expression) && ts6.isFunctionExpression(statement.expression.expression.expression)) {
const call = statement.expression.expression;
const fn = statement.expression.expression.expression;
return { call, fn };
}
if (ts6.isCallExpression(statement.expression) && ts6.isParenthesizedExpression(statement.expression.expression) && ts6.isFunctionExpression(statement.expression.expression.expression)) {
const call = statement.expression;
const fn = statement.expression.expression.expression;
return { call, fn };
}
return null;
}
function parseUmdWrapperFunction(wrapperFn) {
const stmt = wrapperFn.body.statements[0];
let conditionalFactoryCalls;
if (ts6.isExpressionStatement(stmt) && ts6.isConditionalExpression(stmt.expression)) {
conditionalFactoryCalls = extractFactoryCallsFromConditionalExpression(stmt.expression);
} else if (ts6.isIfStatement(stmt)) {
conditionalFactoryCalls = extractFactoryCallsFromIfStatement(stmt);
} else {
throw new Error("UMD wrapper body is not in a supported format (expected a conditional expression or if statement):\n" + wrapperFn.body.getText());
}
const amdDefine = getAmdDefineCall(conditionalFactoryCalls);
const commonJs = getCommonJsFactoryCall(conditionalFactoryCalls);
const commonJs2 = getCommonJs2FactoryCall(conditionalFactoryCalls);
const global = getGlobalFactoryCall(conditionalFactoryCalls);
const cjsCallForImports = commonJs2 || commonJs;
if (cjsCallForImports === null) {
throw new Error("Unable to find a CommonJS or CommonJS2 factory call inside the UMD wrapper function:\n" + stmt.getText());
}
return { amdDefine, commonJs, commonJs2, global, cjsCallForImports };
}
function extractFactoryCallsFromConditionalExpression(node) {
const factoryCalls = [];
let currentNode = node;
while (ts6.isConditionalExpression(currentNode)) {
if (!ts6.isBinaryExpression(currentNode.condition)) {
throw new Error("Condition inside UMD wrapper is not a binary expression:\n" + currentNode.condition.getText());
}
factoryCalls.push({
condition: currentNode.condition,
factoryCall: getFunctionCallFromExpression(currentNode.whenTrue)
});
currentNode = currentNode.whenFalse;
}
factoryCalls.push({
condition: null,
factoryCall: getFunctionCallFromExpression(currentNode)
});
return factoryCalls;
}
function extractFactoryCallsFromIfStatement(node) {
const factoryCalls = [];
let currentNode = node;
while (currentNode && ts6.isIfStatement(currentNode)) {
if (!ts6.isBinaryExpression(currentNode.expression)) {
throw new Error("Condition inside UMD wrapper is not a binary expression:\n" + currentNode.expression.getText());
}
if (!ts6.isExpressionStatement(currentNode.thenStatement)) {
throw new Error("Then-statement inside UMD wrapper is not an expression statement:\n" + currentNode.thenStatement.getText());
}
factoryCalls.push({
condition: currentNode.expression,
factoryCall: getFunctionCallFromExpression(currentNode.thenStatement.expression)
});
currentNode = currentNode.elseStatement;
}
if (currentNode) {
if (!ts6.isExpressionStatement(currentNode)) {
throw new Error("Else-statement inside UMD wrapper is not an expression statement:\n" + currentNode.getText());
}
factoryCalls.push({
condition: null,
factoryCall: getFunctionCallFromExpression(currentNode.expression)
});
}
return factoryCalls;
}
function getFunctionCallFromExpression(node) {
if (ts6.isParenthesizedExpression(node)) {
return getFunctionCallFromExpression(node.expression);
}
if (ts6.isBinaryExpression(node) && [ts6.SyntaxKind.CommaToken, ts6.SyntaxKind.EqualsToken].includes(node.operatorToken.kind)) {
return getFunctionCallFromExpression(node.right);
}
if (!ts6.isCallExpression(node)) {
throw new Error("Expression inside UMD wrapper is not a call expression:\n" + node.getText());
}
return node;
}
function getAmdDefineCall(calls) {
var _a;
const amdConditionalCall = calls.find((call) => {
var _a2;
return ((_a2 = call.condition) == null ? void 0 : _a2.operatorToken.kind) === ts6.SyntaxKind.AmpersandAmpersandToken && oneOfBinaryConditions(call.condition, (exp) => isTypeOf(exp, "define")) && ts6.isIdentifier(call.factoryCall.expression) && call.factoryCall.expression.text === "define";
});
return (_a = amdConditionalCall == null ? void 0 : amdConditionalCall.factoryCall) != null ? _a : null;
}
function getCommonJsFactoryCall(calls) {
var _a;
const cjsConditionalCall = calls.find((call) => {
var _a2;
return ((_a2 = call.condition) == null ? void 0 : _a2.operatorToken.kind) === ts6.SyntaxKind.EqualsEqualsEqualsToken && isTypeOf(call.condition, "exports") && ts6.isIdentifier(call.factoryCall.expression) && call.factoryCall.expression.text === "factory";
});
return (_a = cjsConditionalCall == null ? void 0 : cjsConditionalCall.factoryCall) != null ? _a : null;
}
function getCommonJs2FactoryCall(calls) {
var _a;
const cjs2ConditionalCall = calls.find((call) => {
var _a2;
return ((_a2 = call.condition) == null ? void 0 : _a2.operatorToken.kind) === ts6.SyntaxKind.AmpersandAmpersandToken && oneOfBinaryConditions(call.condition, (exp) => isTypeOf(exp, "exports", "module")) && ts6.isIdentifier(call.factoryCall.expression) && call.factoryCall.expression.text === "factory";
});
return (_a = cjs2ConditionalCall == null ? void 0 : cjs2ConditionalCall.factoryCall) != null ? _a : null;
}
function getGlobalFactoryCall(calls) {
var _a;
const globalConditionalCall = calls.find((call) => call.condition === null);
return (_a = globalConditionalCall == null ? void 0 : globalConditionalCall.factoryCall) != null ? _a : null;
}
function oneOfBinaryConditions(node, test) {
return test(node.left) || test(node.right);
}
function isTypeOf(node, ...types) {
return ts6.isBinaryExpression(node) && ts6.isTypeOfExpression(node.left) && ts6.isIdentifier(node.left.expression) && types.includes(node.left.expression.text);
}
function getImportsOfUmdModule(umdModule) {
const imports = [];
const factoryFnParams = umdModule.factoryFn.parameters;
const cjsFactoryCallArgs = umdModule.factoryCalls.cjsCallForImports.arguments;
for (let i = 0; i < factoryFnParams.length; i++) {
const arg = cjsFactoryCallArgs[i];
if (arg !== void 0 && isRequireCall(arg)) {
imports.push({
parameter: factoryFnParams[i],
path: arg.arguments[0].text
});
}
}
return imports;
}
function isExportsIdentifier(node) {
return ts6.isIdentifier(node) && node.text === "exports";
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/entry_point.mjs
var SUPPORTED_FORMAT_PROPERTIES = ["fesm2015", "fesm5", "es2015", "esm2015", "esm5", "main", "module", "browser"];
var NO_ENTRY_POINT = "no-entry-point";
var IGNORED_ENTRY_POINT = "ignored-entry-point";
var INCOMPATIBLE_ENTRY_POINT = "incompatible-entry-point";
function getEntryPointInfo(fs, config, logger, packagePath, entryPointPath) {
const packagePackageJsonPath = fs.resolve(packagePath, "package.json");
const entryPointPackageJsonPath = fs.resolve(entryPointPath, "package.json");
const loadedPackagePackageJson = loadJson(fs, packagePackageJsonPath);
const loadedEntryPointPackageJson = packagePackageJsonPath === entryPointPackageJsonPath ? loadedPackagePackageJson : loadOrSynthesizeSecondaryPackageJson(fs, packagePath, entryPointPath, entryPointPackageJsonPath, loadedPackagePackageJson);
const { packageName, packageVersion } = getPackageNameAndVersion(fs, packagePath, loadedPackagePackageJson, loadedEntryPointPackageJson);
const repositoryUrl = getRepositoryUrl(loadedPackagePackageJson);
const packageConfig = config.getPackageConfig(packageName, packagePath, packageVersion);
const entryPointConfig = packageConfig.entryPoints.get(entryPointPath);
let entryPointPackageJson;
if (entryPointConfig === void 0) {
if (loadedEntryPointPackageJson !== null) {
entryPointPackageJson = loadedEntryPointPackageJson;
} else if (!fs.exists(entryPointPackageJsonPath)) {
return NO_ENTRY_POINT;
} else {
logger.warn(`Failed to read entry point info from invalid 'package.json' file: ${entryPointPackageJsonPath}`);
return INCOMPATIBLE_ENTRY_POINT;
}
} else if (entryPointConfig.ignore === true) {
return IGNORED_ENTRY_POINT;
} else {
entryPointPackageJson = mergeConfigAndPackageJson(fs, loadedEntryPointPackageJson, entryPointConfig, packagePath, entryPointPath);
}
const typings = entryPointPackageJson.typings || entryPointPackageJson.types || guessTypingsFromPackageJson(fs, entryPointPath, entryPointPackageJson);
if (typeof typings !== "string") {
return INCOMPATIBLE_ENTRY_POINT;
}
const metadataPath = fs.resolve(entryPointPath, typings.replace(/\.d\.ts$/, "") + ".metadata.json");
const compiledByAngular = entryPointConfig !== void 0 || fs.exists(metadataPath);
const entryPointInfo = {
name: entryPointPackageJson.name,
path: entryPointPath,
packageName,
packagePath,
repositoryUrl,
packageJson: entryPointPackageJson,
typings: fs.resolve(entryPointPath, typings),
compiledByAngular,
ignoreMissingDependencies: entryPointConfig !== void 0 ? !!entryPointConfig.ignoreMissingDependencies : false,
generateDeepReexports: entryPointConfig !== void 0 ? !!entryPointConfig.generateDeepReexports : false
};
return entryPointInfo;
}
function isEntryPoint(result) {
return result !== NO_ENTRY_POINT && result !== INCOMPATIBLE_ENTRY_POINT && result !== IGNORED_ENTRY_POINT;
}
function getEntryPointFormat(fs, entryPoint, property2) {
switch (property2) {
case "fesm2015":
return "esm2015";
case "fesm5":
return "esm5";
case "es2015":
return "esm2015";
case "esm2015":
return "esm2015";
case "esm5":
return "esm5";
case "browser":
const browserFile = entryPoint.packageJson["browser"];
if (typeof browserFile !== "string") {
return void 0;
}
return sniffModuleFormat(fs, fs.join(entryPoint.path, browserFile));
case "main":
const mainFile = entryPoint.packageJson["main"];
if (mainFile === void 0) {
return void 0;
}
return sniffModuleFormat(fs, fs.join(entryPoint.path, mainFile));
case "module":
const moduleFilePath = entryPoint.packageJson["module"];
if (typeof moduleFilePath === "string" && moduleFilePath.includes("esm2015")) {
return `esm2015`;
}
return "esm5";
default:
return void 0;
}
}
function loadOrSynthesizeSecondaryPackageJson(fs, packagePath, entryPointPath, secondaryPackageJsonPath, primaryPackageJson) {
const loadedPackageJson = loadJson(fs, secondaryPackageJsonPath);
if (loadedPackageJson !== null) {
return loadedPackageJson;
}
const entryPointInfo = loadSecondaryEntryPointInfoForApfV14(fs, primaryPackageJson, packagePath, entryPointPath);
if (entryPointInfo === null) {
return null;
}
const synthesizedPackageJson = {
synthesized: true,
name: `${primaryPackageJson.name}/${fs.relative(packagePath, entryPointPath)}`
};
for (const prop of [...SUPPORTED_FORMAT_PROPERTIES, "types", "typings"]) {
const packageRelativePath = entryPointInfo[prop];
if (typeof packageRelativePath === "string") {
const absolutePath = fs.resolve(packagePath, packageRelativePath);
const entryPointRelativePath = fs.relative(entryPointPath, absolutePath);
synthesizedPackageJson[prop] = fs.isRooted(entryPointRelativePath) || entryPointRelativePath.startsWith(".") ? entryPointRelativePath : `./${entryPointRelativePath}`;
}
}
return synthesizedPackageJson;
}
function sniffModuleFormat(fs, sourceFilePath) {
const resolvedPath = resolveFileWithPostfixes(fs, sourceFilePath, ["", ".js", "/index.js"]);
if (resolvedPath === null) {
return void 0;
}
const sourceFile = ts7.createSourceFile(sourceFilePath, fs.readFile(resolvedPath), ts7.ScriptTarget.ES5);
if (sourceFile.statements.length === 0) {
return void 0;
}
if (ts7.isExternalModule(sourceFile)) {
return "esm5";
} else if (parseStatementForUmdModule(sourceFile.statements[0]) !== null) {
return "umd";
} else {
return "commonjs";
}
}
function mergeConfigAndPackageJson(fs, entryPointPackageJson, entryPointConfig, packagePath, entryPointPath) {
if (entryPointPackageJson !== null) {
return { ...entryPointPackageJson, ...entryPointConfig.override };
} else {
const name = `${fs.basename(packagePath)}/${fs.relative(packagePath, entryPointPath)}`;
return { name, ...entryPointConfig.override };
}
}
function guessTypingsFromPackageJson(fs, entryPointPath, entryPointPackageJson) {
for (const prop of SUPPORTED_FORMAT_PROPERTIES) {
const field = entryPointPackageJson[prop];
if (typeof field !== "string") {
continue;
}
const relativeTypingsPath = field.replace(/\.js$/, ".d.ts");
const typingsPath = fs.resolve(entryPointPath, relativeTypingsPath);
if (fs.exists(typingsPath)) {
return typingsPath;
}
}
return null;
}
function getPackageNameAndVersion(fs, packagePath, packagePackageJson, entryPointPackageJson) {
var _a;
let packageName;
if (packagePackageJson !== null) {
packageName = packagePackageJson.name;
} else if (entryPointPackageJson !== null) {
packageName = /^(?:@[^/]+\/)?[^/]*/.exec(entryPointPackageJson.name)[0];
} else {
const lastSegment = fs.basename(packagePath);
const secondLastSegment = fs.basename(fs.dirname(packagePath));
packageName = secondLastSegment.startsWith("@") ? `${secondLastSegment}/${lastSegment}` : lastSegment;
}
return {
packageName,
packageVersion: (_a = packagePackageJson == null ? void 0 : packagePackageJson.version) != null ? _a : null
};
}
function getRepositoryUrl(packageJson) {
if ((packageJson == null ? void 0 : packageJson.repository) === void 0) {
return "";
}
if (typeof packageJson.repository === "string") {
return packageJson.repository;
}
return packageJson.repository.url;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/api.mjs
var DtsProcessing;
(function(DtsProcessing2) {
DtsProcessing2[DtsProcessing2["Yes"] = 0] = "Yes";
DtsProcessing2[DtsProcessing2["No"] = 1] = "No";
DtsProcessing2[DtsProcessing2["Only"] = 2] = "Only";
})(DtsProcessing || (DtsProcessing = {}));
var TaskDependencies = Map;
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/adjust_cjs_umd_exports.mjs
import ts8 from "typescript";
function adjustElementAccessExports(sourceText) {
if (!/exports\[["']/.test(sourceText)) {
return sourceText;
}
const replacements = [];
const sf = ts8.createSourceFile("input.js", sourceText, ts8.ScriptTarget.ES5, false, ts8.ScriptKind.JS);
ts8.forEachChild(sf, function visitNode(node) {
if (ts8.isElementAccessExpression(node) && isExportsIdentifier2(node.expression) && ts8.isStringLiteral(node.argumentExpression) && isJsIdentifier(node.argumentExpression.text)) {
replacements.push({
start: node.getStart(sf),
end: node.getEnd(),
identifier: node.argumentExpression.text
});
}
ts8.forEachChild(node, visitNode);
});
replacements.sort((a, b) => a.start - b.start);
const parts = [];
let currentIndex = 0;
for (const replacement of replacements) {
parts.push(sourceText.substring(currentIndex, replacement.start));
parts.push(`exports. ${replacement.identifier} `);
currentIndex = replacement.end;
}
parts.push(sourceText.substring(currentIndex));
return parts.join("");
}
function isExportsIdentifier2(expr) {
return ts8.isIdentifier(expr) && expr.text === "exports";
}
var identifierPattern = /^(?!(?:do|if|in|for|let|new|try|var|case|else|enum|eval|false|null|this|true|void|with|break|catch|class|const|super|throw|while|yield|delete|export|import|public|return|static|switch|typeof|default|extends|finally|package|private|continue|debugger|function|arguments|interface|protected|implements|instanceof)$)[$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc][$A-Z\_a-z\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u0527\u0531-\u0556\u0559\u0561-\u0587\u05d0-\u05ea\u05f0-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u08a0\u08a2-\u08ac\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0977\u0979-\u097f\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c33\u0c35-\u0c39\u0c3d\u0c58\u0c59\u0c60\u0c61\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d05-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d60\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e87\u0e88\u0e8a\u0e8d\u0e94-\u0e97\u0e99-\u0e9f\u0ea1-\u0ea3\u0ea5\u0ea7\u0eaa\u0eab\u0ead-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f4\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f0\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1877\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191c\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19c1-\u19c7\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1ce9-\u1cec\u1cee-\u1cf1\u1cf5\u1cf6\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2119-\u211d\u2124\u2126\u2128\u212a-\u212d\u212f-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u2e2f\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309d-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312d\u3131-\u318e\u31a0-\u31ba\u31f0-\u31ff\u3400-\u4db5\u4e00-\u9fcc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua697\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua78e\ua790-\ua793\ua7a0-\ua7aa\ua7f8-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa80-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uabc0-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc0-9\u0300-\u036f\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08e4-\u08fe\u0900-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c01-\u0c03\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c82\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d02\u0d03\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d82\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u1810-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19b0-\u19c0\u19c8\u19c9\u19d0-\u19d9\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf2-\u1cf4\u1dc0-\u1de6\u1dfc-\u1dff\u200c\u200d\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua880\ua881\ua8b4-\ua8c4\ua8d0-\ua8d9\ua8e0-\ua8f1\ua900-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f]*$/;
function isJsIdentifier(text) {
return identifierPattern.test(text);
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/bundle_program.mjs
import ts10 from "typescript";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/patch_ts_expando_initializer.mjs
import ts9 from "typescript";
function patchTsGetExpandoInitializer() {
if (isTs31778GetExpandoInitializerFixed()) {
return null;
}
const originalGetExpandoInitializer = ts9.getExpandoInitializer;
if (originalGetExpandoInitializer === void 0) {
throw makeUnsupportedTypeScriptError();
}
ts9.getExpandoInitializer = (initializer, isPrototypeAssignment) => {
if (ts9.isParenthesizedExpression(initializer) && ts9.isCallExpression(initializer.expression)) {
initializer = initializer.expression;
}
return originalGetExpandoInitializer(initializer, isPrototypeAssignment);
};
return originalGetExpandoInitializer;
}
function restoreGetExpandoInitializer(originalGetExpandoInitializer) {
if (originalGetExpandoInitializer !== null) {
ts9.getExpandoInitializer = originalGetExpandoInitializer;
}
}
var ts31778FixedResult = null;
function isTs31778GetExpandoInitializerFixed() {
if (ts31778FixedResult !== null) {
return ts31778FixedResult;
}
ts31778FixedResult = checkIfExpandoPropertyIsPresent();
if (!ts31778FixedResult) {
const originalGetExpandoInitializer = patchTsGetExpandoInitializer();
try {
const patchIsSuccessful = checkIfExpandoPropertyIsPresent();
if (!patchIsSuccessful) {
throw makeUnsupportedTypeScriptError();
}
} finally {
restoreGetExpandoInitializer(originalGetExpandoInitializer);
}
}
return ts31778FixedResult;
}
function checkIfExpandoPropertyIsPresent() {
const sourceText = `
(function() {
var A = (function() {
function A() {}
return A;
}());
A.expando = true;
}());`;
const sourceFile = ts9.createSourceFile("test.js", sourceText, ts9.ScriptTarget.ES5, true, ts9.ScriptKind.JS);
const host = {
getSourceFile() {
return sourceFile;
},
fileExists() {
return true;
},
readFile() {
return "";
},
writeFile() {
},
getDefaultLibFileName() {
return "";
},
getCurrentDirectory() {
return "";
},
getDirectories() {
return [];
},
getCanonicalFileName(fileName) {
return fileName;
},
useCaseSensitiveFileNames() {
return true;
},
getNewLine() {
return "\n";
}
};
const options = { noResolve: true, noLib: true, noEmit: true, allowJs: true };
const program = ts9.createProgram(["test.js"], options, host);
function visitor(node) {
if (ts9.isVariableDeclaration(node) && hasNameIdentifier(node) && node.name.text === "A") {
return node;
}
return ts9.forEachChild(node, visitor);
}
const declaration = ts9.forEachChild(sourceFile, visitor);
if (declaration === void 0) {
throw new Error("Unable to find declaration of outer A");
}
const symbol = program.getTypeChecker().getSymbolAtLocation(declaration.name);
if (symbol === void 0) {
throw new Error("Unable to resolve symbol of outer A");
}
return symbol.exports !== void 0 && symbol.exports.has("expando");
}
function makeUnsupportedTypeScriptError() {
return new Error("The TypeScript version used is not supported by ngcc.");
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/bundle_program.mjs
function makeBundleProgram(fs, isCore, pkg, path, r3FileName, options, host, additionalFiles = []) {
const r3SymbolsPath = isCore ? findR3SymbolsPath(fs, fs.dirname(path), r3FileName) : null;
let rootPaths = r3SymbolsPath ? [path, r3SymbolsPath, ...additionalFiles] : [path, ...additionalFiles];
const originalGetExpandoInitializer = patchTsGetExpandoInitializer();
const program = ts10.createProgram(rootPaths, options, host);
program.getTypeChecker();
restoreGetExpandoInitializer(originalGetExpandoInitializer);
const file = program.getSourceFile(path);
const r3SymbolsFile = r3SymbolsPath && program.getSourceFile(r3SymbolsPath) || null;
return { program, options, host, package: pkg, path, file, r3SymbolsPath, r3SymbolsFile };
}
function findR3SymbolsPath(fs, directory, filename) {
const r3SymbolsFilePath = fs.resolve(directory, filename);
if (fs.exists(r3SymbolsFilePath)) {
return r3SymbolsFilePath;
}
const subDirectories = fs.readdir(directory).filter((p) => !p.startsWith(".")).filter((p) => p !== "node_modules").filter((p) => {
const stat = fs.lstat(fs.resolve(directory, p));
return stat.isDirectory() && !stat.isSymbolicLink();
});
for (const subDirectory of subDirectories) {
const r3SymbolsFilePath2 = findR3SymbolsPath(fs, fs.resolve(directory, subDirectory), filename);
if (r3SymbolsFilePath2) {
return r3SymbolsFilePath2;
}
}
return null;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/ngcc_compiler_host.mjs
import ts11 from "typescript";
var NgccSourcesCompilerHost = class extends NgtscCompilerHost {
constructor(fs, options, cache, moduleResolutionCache, packagePath) {
super(fs, options);
this.cache = cache;
this.moduleResolutionCache = moduleResolutionCache;
this.packagePath = packagePath;
}
getSourceFile(fileName, languageVersion) {
return this.cache.getCachedSourceFile(fileName, languageVersion);
}
resolveModuleNames(moduleNames, containingFile, reusedNames, redirectedReference) {
return moduleNames.map((moduleName) => {
const { resolvedModule } = ts11.resolveModuleName(moduleName, containingFile, this.options, this, this.moduleResolutionCache, redirectedReference);
if ((resolvedModule == null ? void 0 : resolvedModule.extension) === ts11.Extension.Dts && containingFile.endsWith(".js") && isRelativePath(moduleName)) {
const jsFile = resolvedModule.resolvedFileName.replace(/\.d\.ts$/, ".js");
if (this.fileExists(jsFile)) {
return { ...resolvedModule, resolvedFileName: jsFile, extension: ts11.Extension.Js };
}
}
if ((resolvedModule == null ? void 0 : resolvedModule.extension) === ts11.Extension.Js && !isWithinPackage(this.packagePath, this.fs.resolve(resolvedModule.resolvedFileName))) {
return void 0;
}
return resolvedModule;
});
}
};
var NgccDtsCompilerHost = class extends NgtscCompilerHost {
constructor(fs, options, cache, moduleResolutionCache) {
super(fs, options);
this.cache = cache;
this.moduleResolutionCache = moduleResolutionCache;
}
getSourceFile(fileName, languageVersion) {
return this.cache.getCachedSourceFile(fileName, languageVersion);
}
resolveModuleNames(moduleNames, containingFile, reusedNames, redirectedReference) {
return moduleNames.map((moduleName) => {
const { resolvedModule } = ts11.resolveModuleName(moduleName, containingFile, this.options, this, this.moduleResolutionCache, redirectedReference);
return resolvedModule;
});
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/source_file_cache.mjs
import ts12 from "typescript";
var SharedFileCache = class {
constructor(fs) {
this.fs = fs;
this.sfCache = /* @__PURE__ */ new Map();
}
getCachedSourceFile(fileName) {
const absPath = this.fs.resolve(fileName);
if (isDefaultLibrary(absPath, this.fs)) {
return this.getStableCachedFile(absPath);
} else if (isAngularDts(absPath, this.fs)) {
return this.getVolatileCachedFile(absPath);
} else {
return void 0;
}
}
getStableCachedFile(absPath) {
if (!this.sfCache.has(absPath)) {
const content = readFile(absPath, this.fs);
if (content === void 0) {
return void 0;
}
const sf = ts12.createSourceFile(absPath, content, ts12.ScriptTarget.ES2015);
this.sfCache.set(absPath, sf);
}
return this.sfCache.get(absPath);
}
getVolatileCachedFile(absPath) {
const content = readFile(absPath, this.fs);
if (content === void 0) {
return void 0;
}
if (!this.sfCache.has(absPath) || this.sfCache.get(absPath).text !== content) {
const sf = ts12.createSourceFile(absPath, content, ts12.ScriptTarget.ES2015);
this.sfCache.set(absPath, sf);
}
return this.sfCache.get(absPath);
}
};
var DEFAULT_LIB_PATTERN = ["node_modules", "typescript", "lib", /^lib\..+\.d\.ts$/];
function isDefaultLibrary(absPath, fs) {
return isFile(absPath, DEFAULT_LIB_PATTERN, fs);
}
var ANGULAR_DTS_PATTERN = ["node_modules", "@angular", /./, /\.d\.ts$/];
function isAngularDts(absPath, fs) {
return isFile(absPath, ANGULAR_DTS_PATTERN, fs);
}
function isFile(path, segments, fs) {
for (let i = segments.length - 1; i >= 0; i--) {
const pattern = segments[i];
const segment = fs.basename(path);
if (typeof pattern === "string") {
if (pattern !== segment) {
return false;
}
} else {
if (!pattern.test(segment)) {
return false;
}
}
path = fs.dirname(path);
}
return true;
}
var EntryPointFileCache = class {
constructor(fs, sharedFileCache, processSourceText) {
this.fs = fs;
this.sharedFileCache = sharedFileCache;
this.processSourceText = processSourceText;
this.sfCache = /* @__PURE__ */ new Map();
}
getCachedSourceFile(fileName, languageVersion) {
const staticSf = this.sharedFileCache.getCachedSourceFile(fileName);
if (staticSf !== void 0) {
return staticSf;
}
const absPath = this.fs.resolve(fileName);
if (this.sfCache.has(absPath)) {
return this.sfCache.get(absPath);
}
const content = readFile(absPath, this.fs);
if (content === void 0) {
return void 0;
}
const processed = this.processSourceText(content);
const sf = ts12.createSourceFile(fileName, processed, languageVersion);
this.sfCache.set(absPath, sf);
return sf;
}
};
function readFile(absPath, fs) {
if (!fs.exists(absPath) || !fs.stat(absPath).isFile()) {
return void 0;
}
return fs.readFile(absPath);
}
function createModuleResolutionCache(fs) {
return ts12.createModuleResolutionCache(fs.pwd(), (fileName) => {
return fs.isCaseSensitive() ? fileName : fileName.toLowerCase();
});
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/entry_point_bundle.mjs
function createSourceTextProcessor(format) {
if (format === "umd" || format === "commonjs") {
return adjustElementAccessExports;
} else {
return (sourceText) => sourceText;
}
}
function makeEntryPointBundle(fs, entryPoint, sharedFileCache, moduleResolutionCache, formatPath, isCore, format, dtsProcessing, pathMappings, mirrorDtsFromSrc = false, enableI18nLegacyMessageIdFormat = true) {
const rootDir = entryPoint.packagePath;
const options = { allowJs: true, maxNodeModuleJsDepth: Infinity, rootDir, ...pathMappings };
const processSourceText = createSourceTextProcessor(format);
const entryPointCache = new EntryPointFileCache(fs, sharedFileCache, processSourceText);
const dtsHost = new NgccDtsCompilerHost(fs, options, entryPointCache, moduleResolutionCache);
const srcHost = new NgccSourcesCompilerHost(fs, options, entryPointCache, moduleResolutionCache, entryPoint.packagePath);
const absFormatPath = fs.resolve(entryPoint.path, formatPath);
const typingsPath = fs.resolve(entryPoint.path, entryPoint.typings);
const src = makeBundleProgram(fs, isCore, entryPoint.packagePath, absFormatPath, "r3_symbols.js", options, srcHost);
const additionalDtsFiles = dtsProcessing !== DtsProcessing.No && mirrorDtsFromSrc ? computePotentialDtsFilesFromJsFiles(fs, src.program, absFormatPath, typingsPath) : [];
const dts = dtsProcessing !== DtsProcessing.No ? makeBundleProgram(fs, isCore, entryPoint.packagePath, typingsPath, "r3_symbols.d.ts", { ...options, allowJs: false }, dtsHost, additionalDtsFiles) : null;
const isFlatCore = isCore && src.r3SymbolsFile === null;
return {
entryPoint,
format,
rootDirs: [rootDir],
isCore,
isFlatCore,
src,
dts,
dtsProcessing,
enableI18nLegacyMessageIdFormat
};
}
function computePotentialDtsFilesFromJsFiles(fs, srcProgram, formatPath, typingsPath) {
const formatRoot = fs.dirname(formatPath);
const typingsRoot = fs.dirname(typingsPath);
const additionalFiles = [];
for (const sf of srcProgram.getSourceFiles()) {
if (!sf.fileName.endsWith(".js")) {
continue;
}
const mirroredDtsPath = fs.resolve(typingsRoot, fs.relative(formatRoot, sf.fileName.replace(/\.js$/, ".d.ts")));
if (fs.exists(mirroredDtsPath)) {
additionalFiles.push(mirroredDtsPath);
}
}
return additionalFiles;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/transformer.mjs
import ts22 from "typescript";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/decoration_analyzer.mjs
import { ConstantPool } from "@angular/compiler";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/migrations/utils.mjs
import ts13 from "typescript";
function isClassDeclaration(clazz) {
return isNamedClassDeclaration(clazz) || isNamedFunctionDeclaration(clazz) || isNamedVariableDeclaration(clazz);
}
function hasDirectiveDecorator(host, clazz) {
const ref = new Reference(clazz);
return host.metadata.getDirectiveMetadata(ref) !== null;
}
function hasPipeDecorator(host, clazz) {
const ref = new Reference(clazz);
return host.metadata.getPipeMetadata(ref) !== null;
}
function hasConstructor(host, clazz) {
return host.reflectionHost.getConstructorParameters(clazz) !== null;
}
function createDirectiveDecorator(clazz, metadata) {
const args = [];
if (metadata !== void 0) {
const metaArgs = [];
if (metadata.selector !== null) {
metaArgs.push(property("selector", metadata.selector));
}
if (metadata.exportAs !== null) {
metaArgs.push(property("exportAs", metadata.exportAs.join(", ")));
}
args.push(reifySourceFile(ts13.factory.createObjectLiteralExpression(metaArgs)));
}
return {
name: "Directive",
identifier: null,
import: { name: "Directive", from: "@angular/core" },
node: null,
synthesizedFor: clazz.name,
args
};
}
function createComponentDecorator(clazz, metadata) {
const metaArgs = [
property("template", "")
];
if (metadata.selector !== null) {
metaArgs.push(property("selector", metadata.selector));
}
if (metadata.exportAs !== null) {
metaArgs.push(property("exportAs", metadata.exportAs.join(", ")));
}
return {
name: "Component",
identifier: null,
import: { name: "Component", from: "@angular/core" },
node: null,
synthesizedFor: clazz.name,
args: [
reifySourceFile(ts13.factory.createObjectLiteralExpression(metaArgs))
]
};
}
function createInjectableDecorator(clazz) {
return {
name: "Injectable",
identifier: null,
import: { name: "Injectable", from: "@angular/core" },
node: null,
synthesizedFor: clazz.name,
args: []
};
}
function property(name, value) {
return ts13.factory.createPropertyAssignment(name, ts13.factory.createStringLiteral(value));
}
var EMPTY_SF = ts13.createSourceFile("(empty)", "", ts13.ScriptTarget.Latest);
function reifySourceFile(expr) {
const printer = ts13.createPrinter();
const exprText = printer.printNode(ts13.EmitHint.Unspecified, expr, EMPTY_SF);
const sf = ts13.createSourceFile("(synthetic)", `const expr = ${exprText};`, ts13.ScriptTarget.Latest, true, ts13.ScriptKind.JS);
const stmt = sf.statements[0];
if (!ts13.isVariableStatement(stmt)) {
throw new Error(`Expected VariableStatement, got ${ts13.SyntaxKind[stmt.kind]}`);
}
return stmt.declarationList.declarations[0].initializer;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/migrations/missing_injectable_migration.mjs
var MissingInjectableMigration = class {
apply(clazz, host) {
const decorators = host.reflectionHost.getDecoratorsOfDeclaration(clazz);
if (decorators === null) {
return null;
}
for (const decorator of decorators) {
const name = getAngularCoreDecoratorName(decorator);
if (name === "NgModule") {
migrateNgModuleProviders(decorator, host);
} else if (name === "Directive") {
migrateDirectiveProviders(decorator, host, false);
} else if (name === "Component") {
migrateDirectiveProviders(decorator, host, true);
}
}
return null;
}
};
function migrateNgModuleProviders(decorator, host) {
if (decorator.args === null || decorator.args.length !== 1) {
return;
}
const metadata = host.evaluator.evaluate(decorator.args[0], forwardRefResolver);
if (!(metadata instanceof Map)) {
return;
}
migrateProviders(metadata, "providers", host);
}
function migrateDirectiveProviders(decorator, host, isComponent) {
if (decorator.args === null || decorator.args.length !== 1) {
return;
}
const metadata = host.evaluator.evaluate(decorator.args[0], forwardRefResolver);
if (!(metadata instanceof Map)) {
return;
}
migrateProviders(metadata, "providers", host);
if (isComponent) {
migrateProviders(metadata, "viewProviders", host);
}
}
function migrateProviders(metadata, field, host) {
if (!metadata.has(field)) {
return;
}
const providers = metadata.get(field);
if (!Array.isArray(providers)) {
return;
}
for (const provider of providers) {
migrateProvider(provider, host);
}
}
function migrateProvider(provider, host) {
if (provider instanceof Map) {
if (!provider.has("provide") || provider.has("useValue") || provider.has("useFactory") || provider.has("useExisting")) {
return;
}
if (provider.has("useClass")) {
if (!provider.has("deps")) {
migrateProviderClass(provider.get("useClass"), host);
}
} else {
migrateProviderClass(provider.get("provide"), host);
}
} else if (Array.isArray(provider)) {
for (const v of provider) {
migrateProvider(v, host);
}
} else {
migrateProviderClass(provider, host);
}
}
function migrateProviderClass(provider, host) {
if (!(provider instanceof Reference)) {
return;
}
const clazz = provider.node;
if (isClassDeclaration(clazz) && host.isInScope(clazz) && needsInjectableDecorator(clazz, host)) {
host.injectSyntheticDecorator(clazz, createInjectableDecorator(clazz));
}
}
var NO_MIGRATE_DECORATORS = /* @__PURE__ */ new Set(["Injectable", "Directive", "Component", "Pipe"]);
function needsInjectableDecorator(clazz, host) {
const decorators = host.getAllDecorators(clazz);
if (decorators === null) {
return true;
}
for (const decorator of decorators) {
const name = getAngularCoreDecoratorName(decorator);
if (name !== null && NO_MIGRATE_DECORATORS.has(name)) {
return false;
}
}
return true;
}
function getAngularCoreDecoratorName(decorator) {
if (decorator.import === null || decorator.import.from !== "@angular/core") {
return null;
}
return decorator.import.name;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/migrations/undecorated_child_migration.mjs
var UndecoratedChildMigration = class {
apply(clazz, host) {
const moduleMeta = host.metadata.getNgModuleMetadata(new Reference(clazz));
if (moduleMeta === null) {
return null;
}
for (const decl of moduleMeta.declarations) {
this.maybeMigrate(decl, host);
}
return null;
}
maybeMigrate(ref, host) {
if (hasDirectiveDecorator(host, ref.node) || hasPipeDecorator(host, ref.node)) {
return;
}
const baseRef = readBaseClass(ref.node, host.reflectionHost, host.evaluator);
if (baseRef === null) {
return;
} else if (baseRef === "dynamic") {
return;
}
this.maybeMigrate(baseRef, host);
const baseMeta = host.metadata.getDirectiveMetadata(baseRef);
if (baseMeta === null) {
return;
}
if (baseMeta.isComponent) {
host.injectSyntheticDecorator(ref.node, createComponentDecorator(ref.node, baseMeta), HandlerFlags.FULL_INHERITANCE);
} else {
host.injectSyntheticDecorator(ref.node, createDirectiveDecorator(ref.node, baseMeta), HandlerFlags.FULL_INHERITANCE);
}
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/migrations/undecorated_parent_migration.mjs
var UndecoratedParentMigration = class {
apply(clazz, host) {
if (!hasDirectiveDecorator(host, clazz) || hasConstructor(host, clazz)) {
return null;
}
let baseClazzRef = determineBaseClass(clazz, host);
while (baseClazzRef !== null) {
const baseClazz = baseClazzRef.node;
if (hasDirectiveDecorator(host, baseClazz) || !host.isInScope(baseClazz)) {
break;
}
host.injectSyntheticDecorator(baseClazz, createDirectiveDecorator(baseClazz));
if (hasConstructor(host, baseClazz)) {
break;
}
baseClazzRef = determineBaseClass(baseClazz, host);
}
return null;
}
};
function determineBaseClass(clazz, host) {
const baseClassExpr = host.reflectionHost.getBaseClassExpression(clazz);
if (baseClassExpr === null) {
return null;
}
const baseClass = host.evaluator.evaluate(baseClassExpr);
if (!(baseClass instanceof Reference) || !isClassDeclaration(baseClass.node)) {
return null;
}
return baseClass;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/migration_host.mjs
import ts14 from "typescript";
var DefaultMigrationHost = class {
constructor(reflectionHost, metadata, evaluator, compiler, entryPointPath) {
this.reflectionHost = reflectionHost;
this.metadata = metadata;
this.evaluator = evaluator;
this.compiler = compiler;
this.entryPointPath = entryPointPath;
}
injectSyntheticDecorator(clazz, decorator, flags) {
const migratedTraits = this.compiler.injectSyntheticDecorator(clazz, decorator, flags);
for (const trait of migratedTraits) {
if ((trait.state === TraitState.Analyzed || trait.state === TraitState.Resolved) && trait.analysisDiagnostics !== null) {
trait.analysisDiagnostics = trait.analysisDiagnostics.map((diag) => createMigrationDiagnostic(diag, clazz, decorator));
}
if (trait.state === TraitState.Resolved && trait.resolveDiagnostics !== null) {
trait.resolveDiagnostics = trait.resolveDiagnostics.map((diag) => createMigrationDiagnostic(diag, clazz, decorator));
}
}
}
getAllDecorators(clazz) {
return this.compiler.getAllDecorators(clazz);
}
isInScope(clazz) {
return isWithinPackage(this.entryPointPath, absoluteFromSourceFile(clazz.getSourceFile()));
}
};
function createMigrationDiagnostic(diagnostic, source, decorator) {
const clone = { ...diagnostic };
const chain = [{
messageText: `Occurs for @${decorator.name} decorator inserted by an automatic migration`,
category: ts14.DiagnosticCategory.Message,
code: 0
}];
if (decorator.args !== null) {
const args = decorator.args.map((arg) => arg.getText()).join(", ");
chain.push({
messageText: `@${decorator.name}(${args})`,
category: ts14.DiagnosticCategory.Message,
code: 0
});
}
if (typeof clone.messageText === "string") {
clone.messageText = {
messageText: clone.messageText,
category: diagnostic.category,
code: diagnostic.code,
next: chain
};
} else {
if (clone.messageText.next === void 0) {
clone.messageText.next = chain;
} else {
clone.messageText.next.push(...chain);
}
}
return clone;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/ngcc_trait_compiler.mjs
var NgccTraitCompiler = class extends TraitCompiler {
constructor(handlers, ngccReflector) {
super(
handlers,
ngccReflector,
NOOP_PERF_RECORDER,
new NoIncrementalBuild(),
true,
CompilationMode.FULL,
new DtsTransformRegistry(),
null,
{ isShim, isResource: () => false }
);
this.ngccReflector = ngccReflector;
}
get analyzedFiles() {
return Array.from(this.fileToClasses.keys());
}
analyzeFile(sf) {
const ngccClassSymbols = this.ngccReflector.findClassSymbols(sf);
for (const classSymbol of ngccClassSymbols) {
this.analyzeClass(classSymbol.declaration.valueDeclaration, null);
}
return void 0;
}
injectSyntheticDecorator(clazz, decorator, flags) {
const migratedTraits = this.detectTraits(clazz, [decorator]);
if (migratedTraits === null) {
return [];
}
for (const trait of migratedTraits) {
this.analyzeTrait(clazz, trait, flags);
}
return migratedTraits;
}
getAllDecorators(clazz) {
const record = this.recordFor(clazz);
if (record === null) {
return null;
}
return record.traits.map((trait) => trait.detected.decorator).filter(isDefined);
}
};
var NoIncrementalBuild = class {
priorAnalysisFor(sf) {
return null;
}
priorTypeCheckingResultsFor() {
return null;
}
recordSuccessfulTypeCheck() {
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/types.mjs
var DecorationAnalyses = Map;
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/decoration_analyzer.mjs
var NgccResourceLoader = class {
constructor(fs) {
this.fs = fs;
this.canPreload = false;
this.canPreprocess = false;
}
preload() {
throw new Error("Not implemented.");
}
preprocessInline() {
throw new Error("Not implemented.");
}
load(url) {
return this.fs.readFile(this.fs.resolve(url));
}
resolve(url, containingFile) {
return this.fs.resolve(this.fs.dirname(containingFile), url);
}
};
var DecorationAnalyzer = class {
constructor(fs, bundle, reflectionHost, referencesRegistry, diagnosticHandler = () => {
}, tsConfig = null) {
this.fs = fs;
this.bundle = bundle;
this.reflectionHost = reflectionHost;
this.referencesRegistry = referencesRegistry;
this.diagnosticHandler = diagnosticHandler;
this.tsConfig = tsConfig;
this.program = this.bundle.src.program;
this.options = this.bundle.src.options;
this.host = this.bundle.src.host;
this.typeChecker = this.bundle.src.program.getTypeChecker();
this.rootDirs = this.bundle.rootDirs;
this.packagePath = this.bundle.entryPoint.packagePath;
this.isCore = this.bundle.isCore;
this.compilerOptions = this.tsConfig !== null ? this.tsConfig.options : {};
this.moduleResolver = new ModuleResolver(this.program, this.options, this.host, null);
this.resourceManager = new NgccResourceLoader(this.fs);
this.metaRegistry = new LocalMetadataRegistry();
this.dtsMetaReader = new DtsMetadataReader(this.typeChecker, this.reflectionHost);
this.fullMetaReader = new CompoundMetadataReader([this.metaRegistry, this.dtsMetaReader]);
this.refEmitter = new ReferenceEmitter([
new LocalIdentifierStrategy(),
new AbsoluteModuleStrategy(this.program, this.typeChecker, this.moduleResolver, this.reflectionHost),
new LogicalProjectStrategy(this.reflectionHost, new LogicalFileSystem(this.rootDirs, this.host))
]);
this.aliasingHost = this.bundle.entryPoint.generateDeepReexports ? new PrivateExportAliasingHost(this.reflectionHost) : null;
this.dtsModuleScopeResolver = new MetadataDtsModuleScopeResolver(this.dtsMetaReader, this.aliasingHost);
this.scopeRegistry = new LocalModuleScopeRegistry(this.metaRegistry, this.fullMetaReader, this.dtsModuleScopeResolver, this.refEmitter, this.aliasingHost);
this.fullRegistry = new CompoundMetadataRegistry([this.metaRegistry, this.scopeRegistry]);
this.evaluator = new PartialEvaluator(this.reflectionHost, this.typeChecker, null);
this.importGraph = new ImportGraph(this.typeChecker, NOOP_PERF_RECORDER);
this.cycleAnalyzer = new CycleAnalyzer(this.importGraph);
this.injectableRegistry = new InjectableClassRegistry(this.reflectionHost, this.isCore);
this.hostDirectivesResolver = new HostDirectivesResolver(this.fullMetaReader);
this.typeCheckScopeRegistry = new TypeCheckScopeRegistry(this.scopeRegistry, this.fullMetaReader, this.hostDirectivesResolver);
this.handlers = [
new ComponentDecoratorHandler(
this.reflectionHost,
this.evaluator,
this.fullRegistry,
this.fullMetaReader,
this.scopeRegistry,
this.dtsModuleScopeResolver,
this.scopeRegistry,
this.typeCheckScopeRegistry,
new ResourceRegistry(),
this.isCore,
false,
this.resourceManager,
this.rootDirs,
!!this.compilerOptions.preserveWhitespaces,
true,
this.bundle.enableI18nLegacyMessageIdFormat,
false,
false,
this.moduleResolver,
this.cycleAnalyzer,
0,
this.refEmitter,
NOOP_DEPENDENCY_TRACKER,
this.injectableRegistry,
null,
!!this.compilerOptions.annotateForClosureCompiler,
NOOP_PERF_RECORDER,
this.hostDirectivesResolver
),
new DirectiveDecoratorHandler(
this.reflectionHost,
this.evaluator,
this.fullRegistry,
this.scopeRegistry,
this.fullMetaReader,
this.injectableRegistry,
this.refEmitter,
this.isCore,
false,
null,
!!this.compilerOptions.annotateForClosureCompiler,
true,
NOOP_PERF_RECORDER
),
new PipeDecoratorHandler(this.reflectionHost, this.evaluator, this.metaRegistry, this.scopeRegistry, this.injectableRegistry, this.isCore, NOOP_PERF_RECORDER),
new InjectableDecoratorHandler(
this.reflectionHost,
this.evaluator,
this.isCore,
false,
this.injectableRegistry,
NOOP_PERF_RECORDER,
false
),
new NgModuleDecoratorHandler(
this.reflectionHost,
this.evaluator,
this.fullMetaReader,
this.fullRegistry,
this.scopeRegistry,
this.referencesRegistry,
this.isCore,
this.refEmitter,
null,
!!this.compilerOptions.annotateForClosureCompiler,
false,
this.injectableRegistry,
NOOP_PERF_RECORDER
)
];
this.compiler = new NgccTraitCompiler(this.handlers, this.reflectionHost);
this.migrations = [
new UndecoratedParentMigration(),
new UndecoratedChildMigration(),
new MissingInjectableMigration()
];
}
analyzeProgram() {
for (const sourceFile of this.program.getSourceFiles()) {
if (!sourceFile.isDeclarationFile && isWithinPackage(this.packagePath, absoluteFromSourceFile(sourceFile))) {
this.compiler.analyzeFile(sourceFile);
}
}
this.applyMigrations();
this.compiler.resolve();
this.reportDiagnostics();
const decorationAnalyses = new DecorationAnalyses();
for (const analyzedFile of this.compiler.analyzedFiles) {
const compiledFile = this.compileFile(analyzedFile);
decorationAnalyses.set(compiledFile.sourceFile, compiledFile);
}
return decorationAnalyses;
}
applyMigrations() {
const migrationHost = new DefaultMigrationHost(this.reflectionHost, this.fullMetaReader, this.evaluator, this.compiler, this.bundle.entryPoint.path);
this.migrations.forEach((migration) => {
this.compiler.analyzedFiles.forEach((analyzedFile) => {
const records = this.compiler.recordsFor(analyzedFile);
if (records === null) {
throw new Error("Assertion error: file to migrate must have records.");
}
records.forEach((record) => {
const addDiagnostic = (diagnostic) => {
if (record.metaDiagnostics === null) {
record.metaDiagnostics = [];
}
record.metaDiagnostics.push(diagnostic);
};
try {
const result = migration.apply(record.node, migrationHost);
if (result !== null) {
addDiagnostic(result);
}
} catch (e) {
if (isFatalDiagnosticError(e)) {
addDiagnostic(e.toDiagnostic());
} else {
throw e;
}
}
});
});
});
}
reportDiagnostics() {
this.compiler.diagnostics.forEach(this.diagnosticHandler);
}
compileFile(sourceFile) {
const constantPool = new ConstantPool();
const records = this.compiler.recordsFor(sourceFile);
if (records === null) {
throw new Error("Assertion error: file to compile must have records.");
}
const compiledClasses = [];
for (const record of records) {
const compilation = this.compiler.compile(record.node, constantPool);
if (compilation === null) {
continue;
}
compiledClasses.push({
name: record.node.name.text,
decorators: this.compiler.getAllDecorators(record.node),
declaration: record.node,
compilation
});
}
const reexports = this.getReexportsForSourceFile(sourceFile);
return { constantPool, sourceFile, compiledClasses, reexports };
}
getReexportsForSourceFile(sf) {
const exportStatements = this.compiler.exportStatements;
if (!exportStatements.has(sf.fileName)) {
return [];
}
const exports = exportStatements.get(sf.fileName);
const reexports = [];
exports.forEach(([fromModule, symbolName], asAlias) => {
reexports.push({ asAlias, fromModule, symbolName });
});
return reexports;
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/module_with_providers_analyzer.mjs
import ts15 from "typescript";
var ModuleWithProvidersAnalyses = Map;
var ModuleWithProvidersAnalyzer = class {
constructor(host, typeChecker, referencesRegistry, processDts) {
this.host = host;
this.typeChecker = typeChecker;
this.referencesRegistry = referencesRegistry;
this.processDts = processDts;
this.evaluator = new PartialEvaluator(this.host, this.typeChecker, null);
}
analyzeProgram(program) {
const analyses = new ModuleWithProvidersAnalyses();
const rootFiles = this.getRootFiles(program);
rootFiles.forEach((f) => {
const fns = this.getModuleWithProvidersFunctions(f);
fns && fns.forEach((fn) => {
if (fn.ngModule.bestGuessOwningModule === null) {
this.referencesRegistry.add(fn.ngModule.node, new Reference(fn.ngModule.node));
}
if (this.processDts) {
const dtsFn = this.getDtsModuleWithProvidersFunction(fn);
const dtsFnType = dtsFn.declaration.type;
const typeParam = dtsFnType && ts15.isTypeReferenceNode(dtsFnType) && dtsFnType.typeArguments && dtsFnType.typeArguments[0] || null;
if (!typeParam || isAnyKeyword(typeParam)) {
const dtsFile = dtsFn.declaration.getSourceFile();
const analysis = analyses.has(dtsFile) ? analyses.get(dtsFile) : [];
analysis.push(dtsFn);
analyses.set(dtsFile, analysis);
}
}
});
});
return analyses;
}
getRootFiles(program) {
return program.getRootFileNames().map((f) => program.getSourceFile(f)).filter(isDefined);
}
getModuleWithProvidersFunctions(f) {
const exports = this.host.getExportsOfModule(f);
if (!exports)
return [];
const infos = [];
exports.forEach((declaration) => {
if (declaration.node === null) {
return;
}
if (this.host.isClass(declaration.node)) {
this.host.getMembersOfClass(declaration.node).forEach((member) => {
if (member.isStatic) {
const info = this.parseForModuleWithProviders(member.name, member.node, member.implementation, declaration.node);
if (info) {
infos.push(info);
}
}
});
} else {
if (hasNameIdentifier(declaration.node)) {
const info = this.parseForModuleWithProviders(declaration.node.name.text, declaration.node);
if (info) {
infos.push(info);
}
}
}
});
return infos;
}
parseForModuleWithProviders(name, node, implementation = node, container = null) {
if (implementation === null || !ts15.isFunctionDeclaration(implementation) && !ts15.isMethodDeclaration(implementation) && !ts15.isFunctionExpression(implementation)) {
return null;
}
const declaration = implementation;
const definition = this.host.getDefinitionOfFunction(declaration);
if (definition === null) {
return null;
}
const body = definition.body;
if (body === null || body.length === 0) {
return null;
}
const lastStatement = body[body.length - 1];
if (!ts15.isReturnStatement(lastStatement) || lastStatement.expression === void 0) {
return null;
}
const result = this.evaluator.evaluate(lastStatement.expression);
if (!(result instanceof Map) || !result.has("ngModule")) {
return null;
}
const ngModuleRef = result.get("ngModule");
if (!(ngModuleRef instanceof Reference)) {
return null;
}
if (!isNamedClassDeclaration(ngModuleRef.node) && !isNamedVariableDeclaration(ngModuleRef.node)) {
throw new Error(`The identity given by ${ngModuleRef.debugName} referenced in "${declaration.getText()}" doesn't appear to be a "class" declaration.`);
}
const ngModule = ngModuleRef;
return { name, ngModule, declaration, container };
}
getDtsModuleWithProvidersFunction(fn) {
let dtsFn = null;
const containerClass = fn.container && this.host.getClassSymbol(fn.container);
if (containerClass) {
const dtsClass = this.host.getDtsDeclaration(containerClass.declaration.valueDeclaration);
dtsFn = dtsClass && ts15.isClassDeclaration(dtsClass) ? dtsClass.members.find((member) => ts15.isMethodDeclaration(member) && ts15.isIdentifier(member.name) && member.name.text === fn.name) : null;
} else {
dtsFn = this.host.getDtsDeclaration(fn.declaration);
}
if (!dtsFn) {
throw new Error(`Matching type declaration for ${fn.declaration.getText()} is missing`);
}
if (!isFunctionOrMethod(dtsFn)) {
throw new Error(`Matching type declaration for ${fn.declaration.getText()} is not a function: ${dtsFn.getText()}`);
}
const container = containerClass ? containerClass.declaration.valueDeclaration : null;
const ngModule = this.resolveNgModuleReference(fn);
return { name: fn.name, container, declaration: dtsFn, ngModule };
}
resolveNgModuleReference(fn) {
const ngModule = fn.ngModule;
if (ngModule.bestGuessOwningModule !== null) {
return ngModule;
}
const dtsNgModule = this.host.getDtsDeclaration(ngModule.node);
if (!dtsNgModule) {
throw new Error(`No typings declaration can be found for the referenced NgModule class in ${fn.declaration.getText()}.`);
}
if (!isNamedClassDeclaration(dtsNgModule)) {
throw new Error(`The referenced NgModule in ${fn.declaration.getText()} is not a named class declaration in the typings program; instead we get ${dtsNgModule.getText()}`);
}
return new Reference(dtsNgModule, null);
}
};
function isFunctionOrMethod(declaration) {
return ts15.isFunctionDeclaration(declaration) || ts15.isMethodDeclaration(declaration);
}
function isAnyKeyword(typeParam) {
return typeParam.kind === ts15.SyntaxKind.AnyKeyword;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/ngcc_references_registry.mjs
var NgccReferencesRegistry = class {
constructor(host) {
this.host = host;
this.map = /* @__PURE__ */ new Map();
}
add(source, ...references) {
references.forEach((ref) => {
if (ref.bestGuessOwningModule === null && hasNameIdentifier(ref.node)) {
const declaration = this.host.getDeclarationOfIdentifier(ref.node.name);
if (declaration && hasNameIdentifier(declaration.node)) {
this.map.set(declaration.node.name, declaration);
}
}
});
}
getDeclarationMap() {
return this.map;
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/analysis/private_declarations_analyzer.mjs
var PrivateDeclarationsAnalyzer = class {
constructor(host, referencesRegistry) {
this.host = host;
this.referencesRegistry = referencesRegistry;
}
analyzeProgram(program) {
const rootFiles = this.getRootFiles(program);
return this.getPrivateDeclarations(rootFiles, this.referencesRegistry.getDeclarationMap());
}
getRootFiles(program) {
return program.getRootFileNames().map((f) => program.getSourceFile(f)).filter(isDefined);
}
getPrivateDeclarations(rootFiles, declarations) {
const privateDeclarations = new Map(declarations);
rootFiles.forEach((f) => {
const exports = this.host.getExportsOfModule(f);
if (exports) {
exports.forEach((declaration, exportedName) => {
if (declaration.node !== null && hasNameIdentifier(declaration.node)) {
if (privateDeclarations.has(declaration.node.name)) {
const privateDeclaration = privateDeclarations.get(declaration.node.name);
if (privateDeclaration.node !== declaration.node) {
throw new Error(`${declaration.node.name.text} is declared multiple times.`);
}
privateDeclarations.delete(declaration.node.name);
}
}
});
}
});
return Array.from(privateDeclarations.keys()).map((id) => {
const from = absoluteFromSourceFile(id.getSourceFile());
const declaration = privateDeclarations.get(id);
const dtsDeclaration = this.host.getDtsDeclaration(declaration.node);
const dtsFrom = dtsDeclaration && absoluteFromSourceFile(dtsDeclaration.getSourceFile());
return { identifier: id.text, from, dtsFrom };
});
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/commonjs_host.mjs
import ts16 from "typescript";
var CommonJsReflectionHost = class extends Esm5ReflectionHost {
constructor(logger, isCore, src, dts = null) {
super(logger, isCore, src, dts);
this.commonJsExports = new FactoryMap((sf) => this.computeExportsOfCommonJsModule(sf));
this.topLevelHelperCalls = new FactoryMap((helperName) => new FactoryMap((sf) => sf.statements.map((stmt) => this.getHelperCall(stmt, [helperName])).filter(isDefined)));
this.program = src.program;
this.compilerHost = src.host;
}
getImportOfIdentifier(id) {
const requireCall = this.findCommonJsImport(id);
if (requireCall === null) {
return null;
}
return { from: requireCall.arguments[0].text, name: id.text };
}
getDeclarationOfIdentifier(id) {
return this.getCommonJsModuleDeclaration(id) || super.getDeclarationOfIdentifier(id);
}
getExportsOfModule(module) {
return super.getExportsOfModule(module) || this.commonJsExports.get(module.getSourceFile());
}
getHelperCallsForClass(classSymbol, helperNames) {
const esm5HelperCalls = super.getHelperCallsForClass(classSymbol, helperNames);
if (esm5HelperCalls.length > 0) {
return esm5HelperCalls;
} else {
const sourceFile = classSymbol.declaration.valueDeclaration.getSourceFile();
return this.getTopLevelHelperCalls(sourceFile, helperNames);
}
}
getTopLevelHelperCalls(sourceFile, helperNames) {
const calls = [];
helperNames.forEach((helperName) => {
const helperCallsMap = this.topLevelHelperCalls.get(helperName);
calls.push(...helperCallsMap.get(sourceFile));
});
return calls;
}
computeExportsOfCommonJsModule(sourceFile) {
const moduleMap = /* @__PURE__ */ new Map();
for (const statement of this.getModuleStatements(sourceFile)) {
if (isExportsStatement(statement)) {
const exportDeclaration = this.extractBasicCommonJsExportDeclaration(statement);
moduleMap.set(exportDeclaration.name, exportDeclaration.declaration);
} else if (isWildcardReexportStatement(statement)) {
const reexports = this.extractCommonJsWildcardReexports(statement, sourceFile);
for (const reexport of reexports) {
moduleMap.set(reexport.name, reexport.declaration);
}
} else if (isDefinePropertyReexportStatement(statement)) {
const exportDeclaration = this.extractCommonJsDefinePropertyExportDeclaration(statement);
if (exportDeclaration !== null) {
moduleMap.set(exportDeclaration.name, exportDeclaration.declaration);
}
}
}
return moduleMap;
}
extractBasicCommonJsExportDeclaration(statement) {
var _a;
const exportExpression = skipAliases(statement.expression.right);
const node = statement.expression.left;
const declaration = (_a = this.getDeclarationOfExpression(exportExpression)) != null ? _a : {
kind: 1,
node,
implementation: exportExpression,
known: null,
viaModule: null
};
return { name: node.name.text, declaration };
}
extractCommonJsWildcardReexports(statement, containingFile) {
const reexportArg = statement.expression.arguments[0];
const requireCall = isRequireCall(reexportArg) ? reexportArg : ts16.isIdentifier(reexportArg) ? findRequireCallReference(reexportArg, this.checker) : null;
if (requireCall === null) {
return [];
}
const importPath = requireCall.arguments[0].text;
const importedFile = this.resolveModuleName(importPath, containingFile);
if (importedFile === void 0) {
return [];
}
const importedExports = this.getExportsOfModule(importedFile);
if (importedExports === null) {
return [];
}
const viaModule = isExternalImport(importPath) ? importPath : null;
const reexports = [];
importedExports.forEach((declaration, name) => {
if (viaModule !== null && declaration.viaModule === null) {
declaration = { ...declaration, viaModule };
}
reexports.push({ name, declaration });
});
return reexports;
}
extractCommonJsDefinePropertyExportDeclaration(statement) {
const args = statement.expression.arguments;
const name = args[1].text;
const getterFnExpression = extractGetterFnExpression(statement);
if (getterFnExpression === null) {
return null;
}
const declaration = this.getDeclarationOfExpression(getterFnExpression);
if (declaration !== null) {
return { name, declaration };
}
return {
name,
declaration: {
kind: 1,
node: args[1],
implementation: getterFnExpression,
known: null,
viaModule: null
}
};
}
findCommonJsImport(id) {
const nsIdentifier = findNamespaceOfIdentifier(id);
return nsIdentifier && findRequireCallReference(nsIdentifier, this.checker);
}
getCommonJsModuleDeclaration(id) {
const requireCall = findRequireCallReference(id, this.checker);
if (requireCall === null) {
return null;
}
const importPath = requireCall.arguments[0].text;
const module = this.resolveModuleName(importPath, id.getSourceFile());
if (module === void 0) {
return null;
}
const viaModule = isExternalImport(importPath) ? importPath : null;
return { node: module, known: null, viaModule, identity: null, kind: 0 };
}
getDeclarationOfExpression(expression) {
const inner = getInnerClassDeclaration(expression);
if (inner !== null) {
const outer = getOuterNodeFromInnerDeclaration(inner);
if (outer !== null && isExportsAssignment(outer)) {
return {
kind: 1,
node: outer.left,
implementation: inner,
known: null,
viaModule: null
};
}
}
return super.getDeclarationOfExpression(expression);
}
resolveModuleName(moduleName, containingFile) {
if (this.compilerHost.resolveModuleNames) {
const moduleInfo = this.compilerHost.resolveModuleNames([moduleName], containingFile.fileName, void 0, void 0, this.program.getCompilerOptions())[0];
return moduleInfo && this.program.getSourceFile(absoluteFrom(moduleInfo.resolvedFileName));
} else {
const moduleInfo = ts16.resolveModuleName(moduleName, containingFile.fileName, this.program.getCompilerOptions(), this.compilerHost);
return moduleInfo.resolvedModule && this.program.getSourceFile(absoluteFrom(moduleInfo.resolvedModule.resolvedFileName));
}
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/host/delegating_host.mjs
var DelegatingReflectionHost = class {
constructor(tsHost, ngccHost) {
this.tsHost = tsHost;
this.ngccHost = ngccHost;
}
getConstructorParameters(clazz) {
if (isFromDtsFile(clazz)) {
return this.tsHost.getConstructorParameters(clazz);
}
return this.ngccHost.getConstructorParameters(clazz);
}
getDeclarationOfIdentifier(id) {
if (isFromDtsFile(id)) {
const declaration = this.tsHost.getDeclarationOfIdentifier(id);
return declaration !== null ? this.detectKnownDeclaration(declaration) : null;
}
return this.ngccHost.getDeclarationOfIdentifier(id);
}
getDecoratorsOfDeclaration(declaration) {
if (isFromDtsFile(declaration)) {
return this.tsHost.getDecoratorsOfDeclaration(declaration);
}
return this.ngccHost.getDecoratorsOfDeclaration(declaration);
}
getDefinitionOfFunction(fn) {
if (isFromDtsFile(fn)) {
return this.tsHost.getDefinitionOfFunction(fn);
}
return this.ngccHost.getDefinitionOfFunction(fn);
}
getDtsDeclaration(declaration) {
if (isFromDtsFile(declaration)) {
return this.tsHost.getDtsDeclaration(declaration);
}
return this.ngccHost.getDtsDeclaration(declaration);
}
getExportsOfModule(module) {
if (isFromDtsFile(module)) {
const exportMap = this.tsHost.getExportsOfModule(module);
if (exportMap !== null) {
exportMap.forEach((decl) => this.detectKnownDeclaration(decl));
}
return exportMap;
}
return this.ngccHost.getExportsOfModule(module);
}
getGenericArityOfClass(clazz) {
if (isFromDtsFile(clazz)) {
return this.tsHost.getGenericArityOfClass(clazz);
}
return this.ngccHost.getGenericArityOfClass(clazz);
}
getImportOfIdentifier(id) {
if (isFromDtsFile(id)) {
return this.tsHost.getImportOfIdentifier(id);
}
return this.ngccHost.getImportOfIdentifier(id);
}
getInternalNameOfClass(clazz) {
if (isFromDtsFile(clazz)) {
return this.tsHost.getInternalNameOfClass(clazz);
}
return this.ngccHost.getInternalNameOfClass(clazz);
}
getAdjacentNameOfClass(clazz) {
if (isFromDtsFile(clazz)) {
return this.tsHost.getAdjacentNameOfClass(clazz);
}
return this.ngccHost.getAdjacentNameOfClass(clazz);
}
getMembersOfClass(clazz) {
if (isFromDtsFile(clazz)) {
return this.tsHost.getMembersOfClass(clazz);
}
return this.ngccHost.getMembersOfClass(clazz);
}
getVariableValue(declaration) {
if (isFromDtsFile(declaration)) {
return this.tsHost.getVariableValue(declaration);
}
return this.ngccHost.getVariableValue(declaration);
}
hasBaseClass(clazz) {
if (isFromDtsFile(clazz)) {
return this.tsHost.hasBaseClass(clazz);
}
return this.ngccHost.hasBaseClass(clazz);
}
getBaseClassExpression(clazz) {
if (isFromDtsFile(clazz)) {
return this.tsHost.getBaseClassExpression(clazz);
}
return this.ngccHost.getBaseClassExpression(clazz);
}
isClass(node) {
if (isFromDtsFile(node)) {
return this.tsHost.isClass(node);
}
return this.ngccHost.isClass(node);
}
findClassSymbols(sourceFile) {
return this.ngccHost.findClassSymbols(sourceFile);
}
getClassSymbol(node) {
return this.ngccHost.getClassSymbol(node);
}
getDecoratorsOfSymbol(symbol) {
return this.ngccHost.getDecoratorsOfSymbol(symbol);
}
getEndOfClass(classSymbol) {
return this.ngccHost.getEndOfClass(classSymbol);
}
detectKnownDeclaration(decl) {
return this.ngccHost.detectKnownDeclaration(decl);
}
isStaticallyExported(decl) {
return this.ngccHost.isStaticallyExported(decl);
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/commonjs_rendering_formatter.mjs
import ts19 from "typescript";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/esm5_rendering_formatter.mjs
import ts18 from "typescript";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/esm_rendering_formatter.mjs
import ts17 from "typescript";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/ngcc_import_rewriter.mjs
var NgccFlatImportRewriter = class {
shouldImportSymbol(symbol, specifier) {
if (specifier === "@angular/core") {
return false;
} else {
return true;
}
}
rewriteSymbol(symbol, specifier) {
if (specifier === "@angular/core") {
return validateAndRewriteCoreSymbol(symbol);
} else {
return symbol;
}
}
rewriteSpecifier(originalModulePath, inContextOfFile) {
return originalModulePath;
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/utils.mjs
function getImportRewriter(r3SymbolsFile, isCore, isFlat) {
if (isCore && isFlat) {
return new NgccFlatImportRewriter();
} else if (isCore) {
return new R3SymbolsImportRewriter(r3SymbolsFile.fileName);
} else {
return new NoopImportRewriter();
}
}
function stripExtension2(filePath) {
return filePath.replace(/\.(js|d\.ts)$/, "");
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/esm_rendering_formatter.mjs
var EsmRenderingFormatter = class {
constructor(fs, host, isCore) {
this.fs = fs;
this.host = host;
this.isCore = isCore;
this.printer = ts17.createPrinter({ newLine: ts17.NewLineKind.LineFeed });
}
addImports(output, imports, sf) {
if (imports.length === 0) {
return;
}
const insertionPoint = this.findEndOfImports(sf);
const renderedImports = imports.map((i) => `import * as ${i.qualifier.text} from '${i.specifier}';
`).join("");
output.appendLeft(insertionPoint, renderedImports);
}
addExports(output, entryPointBasePath, exports, importManager, file) {
exports.forEach((e) => {
let exportFrom = "";
const isDtsFile = isDtsPath(entryPointBasePath);
const from = isDtsFile ? e.dtsFrom : e.from;
if (from) {
const basePath = stripExtension2(from);
const relativePath = this.fs.relative(this.fs.dirname(entryPointBasePath), basePath);
const relativeImport = toRelativeImport(relativePath);
exportFrom = entryPointBasePath !== basePath ? ` from '${relativeImport}'` : "";
}
const exportStr = `
export {${e.identifier}}${exportFrom};`;
output.append(exportStr);
});
}
addDirectExports(output, exports, importManager, file) {
for (const e of exports) {
const exportStatement = `
export {${e.symbolName} as ${e.asAlias}} from '${e.fromModule}';`;
output.append(exportStatement);
}
}
addConstants(output, constants, file) {
if (constants === "") {
return;
}
const insertionPoint = this.findEndOfImports(file);
output.appendRight(insertionPoint, "\n" + constants + "\n");
}
addDefinitions(output, compiledClass, definitions) {
const classSymbol = this.host.getClassSymbol(compiledClass.declaration);
if (!classSymbol) {
throw new Error(`Compiled class does not have a valid symbol: ${compiledClass.name}`);
}
const declarationStatement = getContainingStatement(classSymbol.implementation.valueDeclaration);
const insertionPoint = declarationStatement.getEnd();
output.appendLeft(insertionPoint, "\n" + definitions);
}
addAdjacentStatements(output, compiledClass, statements) {
const classSymbol = this.host.getClassSymbol(compiledClass.declaration);
if (!classSymbol) {
throw new Error(`Compiled class does not have a valid symbol: ${compiledClass.name}`);
}
const endOfClass = this.host.getEndOfClass(classSymbol);
output.appendLeft(endOfClass.getEnd(), "\n" + statements);
}
removeDecorators(output, decoratorsToRemove) {
decoratorsToRemove.forEach((nodesToRemove, containerNode) => {
if (ts17.isArrayLiteralExpression(containerNode)) {
const items = containerNode.elements;
if (items.length === nodesToRemove.length) {
const statement = findStatement(containerNode);
if (statement) {
if (ts17.isExpressionStatement(statement)) {
output.remove(statement.getFullStart(), statement.getEnd());
} else if (ts17.isReturnStatement(statement) && statement.expression && isAssignment2(statement.expression)) {
const startOfRemoval = statement.expression.left.getEnd();
const endOfRemoval = getEndExceptSemicolon(statement);
output.remove(startOfRemoval, endOfRemoval);
}
}
} else {
nodesToRemove.forEach((node) => {
const nextSibling = getNextSiblingInArray(node, items);
let end;
if (nextSibling !== null && output.slice(nextSibling.getFullStart() - 1, nextSibling.getFullStart()) === ",") {
end = nextSibling.getFullStart() - 1 + nextSibling.getLeadingTriviaWidth();
} else if (output.slice(node.getEnd(), node.getEnd() + 1) === ",") {
end = node.getEnd() + 1;
} else {
end = node.getEnd();
}
output.remove(node.getFullStart(), end);
});
}
}
});
}
addModuleWithProvidersParams(outputText, moduleWithProviders, importManager) {
moduleWithProviders.forEach((info) => {
const ngModuleName = info.ngModule.node.name.text;
const declarationFile = absoluteFromSourceFile(info.declaration.getSourceFile());
const ngModuleFile = absoluteFromSourceFile(info.ngModule.node.getSourceFile());
const relativePath = this.fs.relative(this.fs.dirname(declarationFile), ngModuleFile);
const relativeImport = toRelativeImport(relativePath);
const importPath = info.ngModule.ownedByModuleGuess || (declarationFile !== ngModuleFile ? stripExtension2(relativeImport) : null);
const ngModule = generateImportString(importManager, importPath, ngModuleName);
if (info.declaration.type) {
const typeName = info.declaration.type && ts17.isTypeReferenceNode(info.declaration.type) ? info.declaration.type.typeName : null;
if (this.isCoreModuleWithProvidersType(typeName)) {
outputText.overwrite(info.declaration.type.getStart(), info.declaration.type.getEnd(), `ModuleWithProviders<${ngModule}>`);
} else {
const originalTypeString = info.declaration.type.getText();
outputText.overwrite(info.declaration.type.getStart(), info.declaration.type.getEnd(), `(${originalTypeString})&{ngModule:${ngModule}}`);
}
} else {
const lastToken = info.declaration.getLastToken();
const insertPoint = lastToken && lastToken.kind === ts17.SyntaxKind.SemicolonToken ? lastToken.getStart() : info.declaration.getEnd();
outputText.appendLeft(insertPoint, `: ${generateImportString(importManager, "@angular/core", "ModuleWithProviders")}<${ngModule}>`);
}
});
}
printStatement(stmt, sourceFile, importManager) {
const node = translateStatement(stmt, importManager);
const code = this.printer.printNode(ts17.EmitHint.Unspecified, node, sourceFile);
return code;
}
findEndOfImports(sf) {
for (const stmt of sf.statements) {
if (!ts17.isImportDeclaration(stmt) && !ts17.isImportEqualsDeclaration(stmt) && !ts17.isNamespaceImport(stmt)) {
return stmt.getStart();
}
}
return 0;
}
isCoreModuleWithProvidersType(typeName) {
const id = typeName && ts17.isIdentifier(typeName) ? this.host.getImportOfIdentifier(typeName) : null;
return id && id.name === "ModuleWithProviders" && (this.isCore || id.from === "@angular/core");
}
};
function findStatement(node) {
while (node) {
if (ts17.isExpressionStatement(node) || ts17.isReturnStatement(node)) {
return node;
}
node = node.parent;
}
return void 0;
}
function generateImportString(importManager, importPath, importName) {
const importAs = importPath ? importManager.generateNamedImport(importPath, importName) : null;
return importAs && importAs.moduleImport ? `${importAs.moduleImport.text}.${importAs.symbol}` : `${importName}`;
}
function getNextSiblingInArray(node, array) {
const index = array.indexOf(node);
return index !== -1 && array.length > index + 1 ? array[index + 1] : null;
}
function getEndExceptSemicolon(statement) {
const lastToken = statement.getLastToken();
return lastToken && lastToken.kind === ts17.SyntaxKind.SemicolonToken ? statement.getEnd() - 1 : statement.getEnd();
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/esm5_rendering_formatter.mjs
var Esm5RenderingFormatter = class extends EsmRenderingFormatter {
addDefinitions(output, compiledClass, definitions) {
const classSymbol = this.host.getClassSymbol(compiledClass.declaration);
if (!classSymbol) {
throw new Error(`Compiled class "${compiledClass.name}" in "${compiledClass.declaration.getSourceFile().fileName}" does not have a valid syntax.
Expected an ES5 IIFE wrapped function. But got:
` + compiledClass.declaration.getText());
}
const declarationStatement = getContainingStatement(classSymbol.implementation.valueDeclaration);
const iifeBody = declarationStatement.parent;
if (!iifeBody || !ts18.isBlock(iifeBody)) {
throw new Error(`Compiled class declaration is not inside an IIFE: ${compiledClass.name} in ${compiledClass.declaration.getSourceFile().fileName}`);
}
const returnStatement = iifeBody.statements.find(ts18.isReturnStatement);
if (!returnStatement) {
throw new Error(`Compiled class wrapper IIFE does not have a return statement: ${compiledClass.name} in ${compiledClass.declaration.getSourceFile().fileName}`);
}
const insertionPoint = returnStatement.getFullStart();
output.appendLeft(insertionPoint, "\n" + definitions);
}
printStatement(stmt, sourceFile, importManager) {
const node = translateStatement(stmt, importManager, { downlevelTaggedTemplates: true, downlevelVariableDeclarations: true });
const code = this.printer.printNode(ts18.EmitHint.Unspecified, node, sourceFile);
return code;
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/commonjs_rendering_formatter.mjs
var CommonJsRenderingFormatter = class extends Esm5RenderingFormatter {
constructor(fs, commonJsHost, isCore) {
super(fs, commonJsHost, isCore);
this.commonJsHost = commonJsHost;
}
addImports(output, imports, file) {
if (imports.length === 0) {
return;
}
const insertionPoint = this.findEndOfImports(file);
const renderedImports = imports.map((i) => `var ${i.qualifier.text} = require('${i.specifier}');
`).join("");
output.appendLeft(insertionPoint, renderedImports);
}
addExports(output, entryPointBasePath, exports, importManager, file) {
exports.forEach((e) => {
const basePath = stripExtension2(e.from);
const relativePath = "./" + this.fs.relative(this.fs.dirname(entryPointBasePath), basePath);
const namedImport = entryPointBasePath !== basePath ? importManager.generateNamedImport(relativePath, e.identifier) : { symbol: e.identifier, moduleImport: null };
const importNamespace = namedImport.moduleImport ? `${namedImport.moduleImport.text}.` : "";
const exportStr = `
exports.${e.identifier} = ${importNamespace}${namedImport.symbol};`;
output.append(exportStr);
});
}
addDirectExports(output, exports, importManager, file) {
for (const e of exports) {
const namedImport = importManager.generateNamedImport(e.fromModule, e.symbolName);
const importNamespace = namedImport.moduleImport ? `${namedImport.moduleImport.text}.` : "";
const exportStr = `
exports.${e.asAlias} = ${importNamespace}${namedImport.symbol};`;
output.append(exportStr);
}
}
findEndOfImports(sf) {
for (const statement of sf.statements) {
if (ts19.isExpressionStatement(statement) && isRequireCall(statement.expression)) {
continue;
}
const declarations = ts19.isVariableStatement(statement) ? Array.from(statement.declarationList.declarations) : [];
if (declarations.some((d) => !d.initializer || !isRequireCall(d.initializer))) {
return statement.getStart();
}
}
return 0;
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/dts_renderer.mjs
import MagicString from "magic-string";
import ts20 from "typescript";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/constants.mjs
var IMPORT_PREFIX = "\u0275ngcc";
var NGCC_TIMED_OUT_EXIT_CODE = 177;
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/source_maps.mjs
import mapHelpers from "convert-source-map";
function renderSourceAndMap(logger, fs, sourceFile, generatedMagicString) {
var _a;
const sourceFilePath = absoluteFromSourceFile(sourceFile);
const sourceMapPath = absoluteFrom(`${sourceFilePath}.map`);
const generatedContent = generatedMagicString.toString();
const generatedMap = generatedMagicString.generateMap({ file: sourceFilePath, source: sourceFilePath, includeContent: true });
try {
const loader = new SourceFileLoader(fs, logger, {});
const generatedFile = loader.loadSourceFile(sourceFilePath, generatedContent, { map: generatedMap, mapPath: sourceMapPath });
const rawMergedMap = generatedFile.renderFlattenedSourceMap();
const mergedMap = mapHelpers.fromObject(rawMergedMap);
const originalFile = loader.loadSourceFile(sourceFilePath, generatedMagicString.original);
if (originalFile.rawMap === null && !sourceFile.isDeclarationFile || ((_a = originalFile.rawMap) == null ? void 0 : _a.origin) === ContentOrigin.Inline) {
return [
{ path: sourceFilePath, contents: `${generatedFile.contents}
${mergedMap.toComment()}` }
];
}
const sourceMapComment = mapHelpers.generateMapFileComment(`${fs.basename(sourceFilePath)}.map`);
return [
{ path: sourceFilePath, contents: `${generatedFile.contents}
${sourceMapComment}` },
{ path: sourceMapPath, contents: mergedMap.toJSON() }
];
} catch (e) {
logger.error(`Error when flattening the source-map "${sourceMapPath}" for "${sourceFilePath}": ${e.toString()}`);
return [
{ path: sourceFilePath, contents: generatedContent },
{ path: sourceMapPath, contents: mapHelpers.fromObject(generatedMap).toJSON() }
];
}
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/dts_renderer.mjs
var DtsRenderInfo = class {
constructor() {
this.classInfo = [];
this.moduleWithProviders = [];
this.privateExports = [];
this.reexports = [];
}
};
var DtsRenderer = class {
constructor(dtsFormatter, fs, logger, host, bundle) {
this.dtsFormatter = dtsFormatter;
this.fs = fs;
this.logger = logger;
this.host = host;
this.bundle = bundle;
}
renderProgram(decorationAnalyses, privateDeclarationsAnalyses, moduleWithProvidersAnalyses) {
const renderedFiles = [];
if (this.bundle.dts) {
const dtsFiles = this.getTypingsFilesToRender(decorationAnalyses, privateDeclarationsAnalyses, moduleWithProvidersAnalyses);
if (!dtsFiles.has(this.bundle.dts.file)) {
dtsFiles.set(this.bundle.dts.file, new DtsRenderInfo());
}
dtsFiles.forEach((renderInfo, file) => renderedFiles.push(...this.renderDtsFile(file, renderInfo)));
}
return renderedFiles;
}
renderDtsFile(dtsFile, renderInfo) {
const outputText = new MagicString(dtsFile.text);
const printer = ts20.createPrinter();
const importManager = new ImportManager(getImportRewriter(this.bundle.dts.r3SymbolsFile, this.bundle.isCore, false), IMPORT_PREFIX);
renderInfo.classInfo.forEach((dtsClass) => {
const endOfClass = dtsClass.dtsDeclaration.getEnd();
dtsClass.compilation.forEach((declaration) => {
const type = translateType(declaration.type, importManager);
markForEmitAsSingleLine(type);
const typeStr = printer.printNode(ts20.EmitHint.Unspecified, type, dtsFile);
const newStatement = ` static ${declaration.name}: ${typeStr};
`;
outputText.appendRight(endOfClass - 1, newStatement);
});
});
if (renderInfo.reexports.length > 0) {
for (const e of renderInfo.reexports) {
const newStatement = `
export {${e.symbolName} as ${e.asAlias}} from '${e.fromModule}';`;
outputText.append(newStatement);
}
}
this.dtsFormatter.addModuleWithProvidersParams(outputText, renderInfo.moduleWithProviders, importManager);
this.dtsFormatter.addExports(outputText, dtsFile.fileName, renderInfo.privateExports, importManager, dtsFile);
this.dtsFormatter.addImports(outputText, importManager.getAllImports(dtsFile.fileName), dtsFile);
return renderSourceAndMap(this.logger, this.fs, dtsFile, outputText);
}
getTypingsFilesToRender(decorationAnalyses, privateDeclarationsAnalyses, moduleWithProvidersAnalyses) {
const dtsMap = /* @__PURE__ */ new Map();
decorationAnalyses.forEach((compiledFile) => {
let appliedReexports = false;
compiledFile.compiledClasses.forEach((compiledClass) => {
const dtsDeclaration = this.host.getDtsDeclaration(compiledClass.declaration);
if (dtsDeclaration) {
const dtsFile = dtsDeclaration.getSourceFile();
const renderInfo = dtsMap.has(dtsFile) ? dtsMap.get(dtsFile) : new DtsRenderInfo();
renderInfo.classInfo.push({ dtsDeclaration, compilation: compiledClass.compilation });
if (!appliedReexports && compiledClass.declaration.getSourceFile().fileName === dtsFile.fileName.replace(/\.d\.ts$/, ".js")) {
renderInfo.reexports.push(...compiledFile.reexports);
appliedReexports = true;
}
dtsMap.set(dtsFile, renderInfo);
}
});
});
if (moduleWithProvidersAnalyses !== null) {
moduleWithProvidersAnalyses.forEach((moduleWithProvidersToFix, dtsFile) => {
const renderInfo = dtsMap.has(dtsFile) ? dtsMap.get(dtsFile) : new DtsRenderInfo();
renderInfo.moduleWithProviders = moduleWithProvidersToFix;
dtsMap.set(dtsFile, renderInfo);
});
}
if (privateDeclarationsAnalyses.length) {
privateDeclarationsAnalyses.forEach((e) => {
if (!e.dtsFrom) {
throw new Error(`There is no typings path for ${e.identifier} in ${e.from}.
We need to add an export for this class to a .d.ts typings file because Angular compiler needs to be able to reference this class in compiled code, such as templates.
The simplest fix for this is to ensure that this class is exported from the package's entry-point.`);
}
});
const dtsEntryPoint = this.bundle.dts.file;
const renderInfo = dtsMap.has(dtsEntryPoint) ? dtsMap.get(dtsEntryPoint) : new DtsRenderInfo();
renderInfo.privateExports = privateDeclarationsAnalyses;
dtsMap.set(dtsEntryPoint, renderInfo);
}
return dtsMap;
}
};
function markForEmitAsSingleLine(node) {
ts20.setEmitFlags(node, ts20.EmitFlags.SingleLine);
ts20.forEachChild(node, markForEmitAsSingleLine);
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/renderer.mjs
import { jsDocComment, WrappedNodeExpr, WritePropExpr } from "@angular/compiler";
import MagicString2 from "magic-string";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/rendering_formatter.mjs
var RedundantDecoratorMap = Map;
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/renderer.mjs
var Renderer = class {
constructor(host, srcFormatter, fs, logger, bundle, tsConfig = null) {
this.host = host;
this.srcFormatter = srcFormatter;
this.fs = fs;
this.logger = logger;
this.bundle = bundle;
this.tsConfig = tsConfig;
}
renderProgram(decorationAnalyses, privateDeclarationsAnalyses) {
const renderedFiles = [];
this.bundle.src.program.getSourceFiles().forEach((sourceFile) => {
if (decorationAnalyses.has(sourceFile) || sourceFile === this.bundle.src.file) {
const compiledFile = decorationAnalyses.get(sourceFile);
renderedFiles.push(...this.renderFile(sourceFile, compiledFile, privateDeclarationsAnalyses));
}
});
return renderedFiles;
}
renderFile(sourceFile, compiledFile, privateDeclarationsAnalyses) {
const isEntryPoint2 = sourceFile === this.bundle.src.file;
const outputText = new MagicString2(sourceFile.text);
const importManager = new ImportManager(getImportRewriter(this.bundle.src.r3SymbolsFile, this.bundle.isCore, this.bundle.isFlatCore), IMPORT_PREFIX);
if (compiledFile) {
const decoratorsToRemove = this.computeDecoratorsToRemove(compiledFile.compiledClasses);
this.srcFormatter.removeDecorators(outputText, decoratorsToRemove);
compiledFile.compiledClasses.forEach((clazz) => {
var _a;
const renderedDefinition = this.renderDefinitions(compiledFile.sourceFile, clazz, importManager, !!((_a = this.tsConfig) == null ? void 0 : _a.options.annotateForClosureCompiler));
this.srcFormatter.addDefinitions(outputText, clazz, renderedDefinition);
const renderedStatements = this.renderAdjacentStatements(compiledFile.sourceFile, clazz, importManager);
this.srcFormatter.addAdjacentStatements(outputText, clazz, renderedStatements);
});
if (!isEntryPoint2 && compiledFile.reexports.length > 0) {
this.srcFormatter.addDirectExports(outputText, compiledFile.reexports, importManager, compiledFile.sourceFile);
}
this.srcFormatter.addConstants(outputText, renderConstantPool(this.srcFormatter, compiledFile.sourceFile, compiledFile.constantPool, importManager), compiledFile.sourceFile);
}
if (isEntryPoint2) {
const entryPointBasePath = stripExtension2(this.bundle.src.path);
this.srcFormatter.addExports(outputText, entryPointBasePath, privateDeclarationsAnalyses, importManager, sourceFile);
}
if (isEntryPoint2 || compiledFile) {
this.srcFormatter.addImports(outputText, importManager.getAllImports(sourceFile.fileName), sourceFile);
}
if (compiledFile || isEntryPoint2) {
return renderSourceAndMap(this.logger, this.fs, sourceFile, outputText);
} else {
return [];
}
}
computeDecoratorsToRemove(classes) {
const decoratorsToRemove = new RedundantDecoratorMap();
classes.forEach((clazz) => {
if (clazz.decorators === null) {
return;
}
clazz.decorators.forEach((dec) => {
if (dec.node === null) {
return;
}
const decoratorArray = dec.node.parent;
if (!decoratorsToRemove.has(decoratorArray)) {
decoratorsToRemove.set(decoratorArray, [dec.node]);
} else {
decoratorsToRemove.get(decoratorArray).push(dec.node);
}
});
});
return decoratorsToRemove;
}
renderDefinitions(sourceFile, compiledClass, imports, annotateForClosureCompiler) {
const name = this.host.getInternalNameOfClass(compiledClass.declaration);
const leadingComment = annotateForClosureCompiler ? jsDocComment([{ tagName: "nocollapse" }]) : void 0;
const statements = compiledClass.compilation.map((c) => createAssignmentStatement(name, c.name, c.initializer, leadingComment));
return this.renderStatements(sourceFile, statements, imports);
}
renderAdjacentStatements(sourceFile, compiledClass, imports) {
const statements = [];
for (const c of compiledClass.compilation) {
statements.push(...c.statements);
}
return this.renderStatements(sourceFile, statements, imports);
}
renderStatements(sourceFile, statements, imports) {
const printStatement = (stmt) => this.srcFormatter.printStatement(stmt, sourceFile, imports);
return statements.map(printStatement).join("\n");
}
};
function renderConstantPool(formatter, sourceFile, constantPool, imports) {
const printStatement = (stmt) => formatter.printStatement(stmt, sourceFile, imports);
return constantPool.statements.map(printStatement).join("\n");
}
function createAssignmentStatement(receiverName, propName, initializer, leadingComment) {
const receiver = new WrappedNodeExpr(receiverName);
const statement = new WritePropExpr(receiver, propName, initializer, void 0, void 0).toStmt();
if (leadingComment !== void 0) {
statement.addLeadingComment(leadingComment);
}
return statement;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/rendering/umd_rendering_formatter.mjs
import ts21 from "typescript";
var UmdRenderingFormatter = class extends Esm5RenderingFormatter {
constructor(fs, umdHost, isCore) {
super(fs, umdHost, isCore);
this.umdHost = umdHost;
}
addImports(output, imports, file) {
if (imports.length === 0) {
return;
}
const umdModule = this.umdHost.getUmdModule(file);
if (!umdModule) {
return;
}
const { factoryFn, factoryCalls } = umdModule;
renderCommonJsDependencies(output, factoryCalls.commonJs, imports);
renderCommonJsDependencies(output, factoryCalls.commonJs2, imports);
renderAmdDependencies(output, factoryCalls.amdDefine, imports);
renderGlobalDependencies(output, factoryCalls.global, imports);
renderFactoryParameters(output, factoryFn, imports);
}
addExports(output, entryPointBasePath, exports, importManager, file) {
const umdModule = this.umdHost.getUmdModule(file);
if (!umdModule) {
return;
}
const factoryFunction = umdModule.factoryFn;
const lastStatement = factoryFunction.body.statements[factoryFunction.body.statements.length - 1];
const insertionPoint = lastStatement ? lastStatement.getEnd() : factoryFunction.body.getEnd() - 1;
exports.forEach((e) => {
const basePath = stripExtension2(e.from);
const relativePath = "./" + this.fs.relative(this.fs.dirname(entryPointBasePath), basePath);
const namedImport = entryPointBasePath !== basePath ? importManager.generateNamedImport(relativePath, e.identifier) : { symbol: e.identifier, moduleImport: null };
const importNamespace = namedImport.moduleImport ? `${namedImport.moduleImport.text}.` : "";
const exportStr = `
exports.${e.identifier} = ${importNamespace}${namedImport.symbol};`;
output.appendRight(insertionPoint, exportStr);
});
}
addDirectExports(output, exports, importManager, file) {
const umdModule = this.umdHost.getUmdModule(file);
if (!umdModule) {
return;
}
const factoryFunction = umdModule.factoryFn;
const lastStatement = factoryFunction.body.statements[factoryFunction.body.statements.length - 1];
const insertionPoint = lastStatement ? lastStatement.getEnd() : factoryFunction.body.getEnd() - 1;
for (const e of exports) {
const namedImport = importManager.generateNamedImport(e.fromModule, e.symbolName);
const importNamespace = namedImport.moduleImport ? `${namedImport.moduleImport.text}.` : "";
const exportStr = `
exports.${e.asAlias} = ${importNamespace}${namedImport.symbol};`;
output.appendRight(insertionPoint, exportStr);
}
}
addConstants(output, constants, file) {
if (constants === "") {
return;
}
const umdModule = this.umdHost.getUmdModule(file);
if (!umdModule) {
return;
}
const factoryFunction = umdModule.factoryFn;
const firstStatement = factoryFunction.body.statements[0];
const insertionPoint = firstStatement ? firstStatement.getStart() : factoryFunction.body.getStart() + 1;
output.appendLeft(insertionPoint, "\n" + constants + "\n");
}
};
function renderCommonJsDependencies(output, factoryCall, imports) {
if (factoryCall === null) {
return;
}
const injectionPoint = factoryCall.arguments.length > 0 ? factoryCall.arguments[0].getFullStart() : factoryCall.getEnd() - 1;
const importString = imports.map((i) => `require('${i.specifier}')`).join(",");
output.appendLeft(injectionPoint, importString + (factoryCall.arguments.length > 0 ? "," : ""));
}
function renderAmdDependencies(output, amdDefineCall, imports) {
if (amdDefineCall === null) {
return;
}
const importString = imports.map((i) => `'${i.specifier}'`).join(",");
const factoryIndex = amdDefineCall.arguments.length - 1;
const dependencyArray = amdDefineCall.arguments[factoryIndex - 1];
if (dependencyArray === void 0 || !ts21.isArrayLiteralExpression(dependencyArray)) {
const injectionPoint = amdDefineCall.arguments[factoryIndex].getFullStart();
output.appendLeft(injectionPoint, `[${importString}],`);
} else {
const injectionPoint = dependencyArray.elements.length > 0 ? dependencyArray.elements[0].getFullStart() : dependencyArray.getEnd() - 1;
output.appendLeft(injectionPoint, importString + (dependencyArray.elements.length > 0 ? "," : ""));
}
}
function renderGlobalDependencies(output, factoryCall, imports) {
if (factoryCall === null) {
return;
}
const injectionPoint = factoryCall.arguments.length > 0 ? factoryCall.arguments[0].getFullStart() : factoryCall.getEnd() - 1;
const importString = imports.map((i) => `global.${getGlobalIdentifier(i)}`).join(",");
output.appendLeft(injectionPoint, importString + (factoryCall.arguments.length > 0 ? "," : ""));
}
function renderFactoryParameters(output, factoryFunction, imports) {
const parameters = factoryFunction.parameters;
const parameterString = imports.map((i) => i.qualifier.text).join(",");
if (parameters.length > 0) {
const injectionPoint = parameters[0].getFullStart();
output.appendLeft(injectionPoint, parameterString + ",");
} else {
const injectionPoint = factoryFunction.getStart() + factoryFunction.getText().indexOf("()") + 1;
output.appendLeft(injectionPoint, parameterString);
}
}
function getGlobalIdentifier(i) {
return i.specifier.replace(/^@angular\//, "ng.").replace(/^@/, "").replace(/\//g, ".").replace(/[-_]+(.?)/g, (_, c) => c.toUpperCase()).replace(/^./, (c) => c.toLowerCase());
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/transformer.mjs
var Transformer = class {
constructor(fs, logger, tsConfig = null) {
this.fs = fs;
this.logger = logger;
this.tsConfig = tsConfig;
}
transform(bundle) {
const ngccReflectionHost = this.getHost(bundle);
const tsReflectionHost = new TypeScriptReflectionHost(bundle.src.program.getTypeChecker());
const reflectionHost = new DelegatingReflectionHost(tsReflectionHost, ngccReflectionHost);
const { decorationAnalyses, privateDeclarationsAnalyses, moduleWithProvidersAnalyses, diagnostics } = this.analyzeProgram(reflectionHost, bundle);
if (hasErrors(diagnostics)) {
return { success: false, diagnostics };
}
let renderedFiles = [];
if (bundle.dtsProcessing !== DtsProcessing.Only) {
const srcFormatter = this.getRenderingFormatter(ngccReflectionHost, bundle);
const renderer = new Renderer(reflectionHost, srcFormatter, this.fs, this.logger, bundle, this.tsConfig);
renderedFiles = renderer.renderProgram(decorationAnalyses, privateDeclarationsAnalyses);
}
if (bundle.dts) {
const dtsFormatter = new EsmRenderingFormatter(this.fs, reflectionHost, bundle.isCore);
const dtsRenderer = new DtsRenderer(dtsFormatter, this.fs, this.logger, reflectionHost, bundle);
const renderedDtsFiles = dtsRenderer.renderProgram(decorationAnalyses, privateDeclarationsAnalyses, moduleWithProvidersAnalyses);
renderedFiles = renderedFiles.concat(renderedDtsFiles);
}
return { success: true, diagnostics, transformedFiles: renderedFiles };
}
getHost(bundle) {
switch (bundle.format) {
case "esm2015":
return new Esm2015ReflectionHost(this.logger, bundle.isCore, bundle.src, bundle.dts);
case "esm5":
return new Esm5ReflectionHost(this.logger, bundle.isCore, bundle.src, bundle.dts);
case "umd":
return new UmdReflectionHost(this.logger, bundle.isCore, bundle.src, bundle.dts);
case "commonjs":
return new CommonJsReflectionHost(this.logger, bundle.isCore, bundle.src, bundle.dts);
default:
throw new Error(`Reflection host for "${bundle.format}" not yet implemented.`);
}
}
getRenderingFormatter(host, bundle) {
switch (bundle.format) {
case "esm2015":
return new EsmRenderingFormatter(this.fs, host, bundle.isCore);
case "esm5":
return new Esm5RenderingFormatter(this.fs, host, bundle.isCore);
case "umd":
if (!(host instanceof UmdReflectionHost)) {
throw new Error("UmdRenderer requires a UmdReflectionHost");
}
return new UmdRenderingFormatter(this.fs, host, bundle.isCore);
case "commonjs":
return new CommonJsRenderingFormatter(this.fs, host, bundle.isCore);
default:
throw new Error(`Renderer for "${bundle.format}" not yet implemented.`);
}
}
analyzeProgram(reflectionHost, bundle) {
const referencesRegistry = new NgccReferencesRegistry(reflectionHost);
const diagnostics = [];
const decorationAnalyzer = new DecorationAnalyzer(this.fs, bundle, reflectionHost, referencesRegistry, (diagnostic) => diagnostics.push(diagnostic), this.tsConfig);
const decorationAnalyses = decorationAnalyzer.analyzeProgram();
const moduleWithProvidersAnalyzer = new ModuleWithProvidersAnalyzer(reflectionHost, bundle.src.program.getTypeChecker(), referencesRegistry, bundle.dts !== null);
const moduleWithProvidersAnalyses = moduleWithProvidersAnalyzer && moduleWithProvidersAnalyzer.analyzeProgram(bundle.src.program);
const privateDeclarationsAnalyzer = new PrivateDeclarationsAnalyzer(reflectionHost, referencesRegistry);
const privateDeclarationsAnalyses = privateDeclarationsAnalyzer.analyzeProgram(bundle.src.program);
return {
decorationAnalyses,
privateDeclarationsAnalyses,
moduleWithProvidersAnalyses,
diagnostics
};
}
};
function hasErrors(diagnostics) {
return diagnostics.some((d) => d.category === ts22.DiagnosticCategory.Error);
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/create_compile_function.mjs
function getCreateCompileFn(fileSystem, logger, fileWriter, enableI18nLegacyMessageIdFormat, tsConfig, pathMappings) {
return (beforeWritingFiles, onTaskCompleted) => {
const transformer = new Transformer(fileSystem, logger, tsConfig);
const sharedFileCache = new SharedFileCache(fileSystem);
const moduleResolutionCache = createModuleResolutionCache(fileSystem);
return (task) => {
const { entryPoint, formatProperty, formatPropertiesToMarkAsProcessed, processDts } = task;
const isCore = entryPoint.name === "@angular/core";
const packageJson = entryPoint.packageJson;
const formatPath = packageJson[formatProperty];
const format = getEntryPointFormat(fileSystem, entryPoint, formatProperty);
if (!formatPath || !format) {
onTaskCompleted(task, 1, `property \`${formatProperty}\` pointing to a missing or empty file: ${formatPath}`);
return;
}
logger.info(`- ${entryPoint.name} [${formatProperty}/${format}] (${entryPoint.repositoryUrl})`);
const bundle = makeEntryPointBundle(fileSystem, entryPoint, sharedFileCache, moduleResolutionCache, formatPath, isCore, format, processDts, pathMappings, true, enableI18nLegacyMessageIdFormat);
const result = transformer.transform(bundle);
if (result.success) {
if (result.diagnostics.length > 0) {
logger.warn(replaceTsWithNgInErrors(ts23.formatDiagnosticsWithColorAndContext(result.diagnostics, bundle.src.host)));
}
const writeBundle = () => {
fileWriter.writeBundle(bundle, result.transformedFiles, formatPropertiesToMarkAsProcessed);
logger.debug(` Successfully compiled ${entryPoint.name} : ${formatProperty}`);
onTaskCompleted(task, 0, null);
};
const beforeWritingResult = beforeWritingFiles(result.transformedFiles);
return beforeWritingResult instanceof Promise ? beforeWritingResult.then(writeBundle) : writeBundle();
} else {
const errors = replaceTsWithNgInErrors(ts23.formatDiagnosticsWithColorAndContext(result.diagnostics, bundle.src.host));
onTaskCompleted(task, 1, `compilation errors:
${errors}`);
}
};
};
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/ngcc_options.mjs
import * as os from "os";
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/path_mappings.mjs
function getPathMappingsFromTsConfig(fs, tsConfig, projectPath) {
if (tsConfig !== null && tsConfig.options.baseUrl !== void 0 && tsConfig.options.paths !== void 0) {
return {
baseUrl: fs.resolve(projectPath, tsConfig.options.baseUrl),
paths: tsConfig.options.paths
};
}
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/in_place_file_writer.mjs
var NGCC_BACKUP_EXTENSION = ".__ivy_ngcc_bak";
var InPlaceFileWriter = class {
constructor(fs, logger, errorOnFailedEntryPoint) {
this.fs = fs;
this.logger = logger;
this.errorOnFailedEntryPoint = errorOnFailedEntryPoint;
}
writeBundle(_bundle, transformedFiles, _formatProperties) {
transformedFiles.forEach((file) => this.writeFileAndBackup(file));
}
revertBundle(_entryPoint, transformedFilePaths, _formatProperties) {
for (const filePath of transformedFilePaths) {
this.revertFileAndBackup(filePath);
}
}
writeFileAndBackup(file) {
this.fs.ensureDir(dirname(file.path));
const backPath = absoluteFrom(`${file.path}${NGCC_BACKUP_EXTENSION}`);
if (this.fs.exists(backPath)) {
if (this.errorOnFailedEntryPoint) {
throw new Error(`Tried to overwrite ${backPath} with an ngcc back up file, which is disallowed.`);
} else {
this.logger.error(`Tried to write ${backPath} with an ngcc back up file but it already exists so not writing, nor backing up, ${file.path}.
This error may be caused by one of the following:
* two or more entry-points overlap and ngcc has been asked to process some files more than once.
In this case, you should check other entry-points in this package
and set up a config to ignore any that you are not using.
* a previous run of ngcc was killed in the middle of processing, in a way that cannot be recovered.
In this case, you should try cleaning the node_modules directory and any dist directories that contain local libraries. Then try again.`);
}
} else {
if (this.fs.exists(file.path)) {
this.fs.moveFile(file.path, backPath);
}
this.fs.writeFile(file.path, file.contents);
}
}
revertFileAndBackup(filePath) {
if (this.fs.exists(filePath)) {
this.fs.removeFile(filePath);
const backPath = absoluteFrom(`${filePath}${NGCC_BACKUP_EXTENSION}`);
if (this.fs.exists(backPath)) {
this.fs.moveFile(backPath, filePath);
}
}
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/new_entry_point_file_writer.mjs
var NGCC_DIRECTORY = "__ivy_ngcc__";
var NGCC_PROPERTY_EXTENSION = "_ivy_ngcc";
var NewEntryPointFileWriter = class extends InPlaceFileWriter {
constructor(fs, logger, errorOnFailedEntryPoint, pkgJsonUpdater) {
super(fs, logger, errorOnFailedEntryPoint);
this.pkgJsonUpdater = pkgJsonUpdater;
}
writeBundle(bundle, transformedFiles, formatProperties) {
const entryPoint = bundle.entryPoint;
const ngccFolder = this.fs.join(entryPoint.packagePath, NGCC_DIRECTORY);
this.copyBundle(bundle, entryPoint.packagePath, ngccFolder, transformedFiles);
transformedFiles.forEach((file) => this.writeFile(file, entryPoint.packagePath, ngccFolder));
this.updatePackageJson(entryPoint, formatProperties, ngccFolder);
}
revertBundle(entryPoint, transformedFilePaths, formatProperties) {
for (const filePath of transformedFilePaths) {
this.revertFile(filePath, entryPoint.packagePath);
}
this.revertPackageJson(entryPoint, formatProperties);
}
copyBundle(bundle, packagePath, ngccFolder, transformedFiles) {
const doNotCopy = new Set(transformedFiles.map((f) => f.path));
bundle.src.program.getSourceFiles().forEach((sourceFile) => {
const originalPath = absoluteFromSourceFile(sourceFile);
if (doNotCopy.has(originalPath)) {
return;
}
const relativePath = this.fs.relative(packagePath, originalPath);
const isInsidePackage = isLocalRelativePath(relativePath);
if (!sourceFile.isDeclarationFile && isInsidePackage) {
const newPath = this.fs.resolve(ngccFolder, relativePath);
this.fs.ensureDir(this.fs.dirname(newPath));
this.fs.copyFile(originalPath, newPath);
this.copyAndUpdateSourceMap(originalPath, newPath);
}
});
}
copyAndUpdateSourceMap(originalSrcPath, newSrcPath) {
var _a;
const sourceMapPath = originalSrcPath + ".map";
if (this.fs.exists(sourceMapPath)) {
try {
const sourceMap = JSON.parse(this.fs.readFile(sourceMapPath));
const newSourceMapPath = newSrcPath + ".map";
const relativePath = this.fs.relative(this.fs.dirname(newSourceMapPath), this.fs.dirname(sourceMapPath));
sourceMap.sourceRoot = this.fs.join(relativePath, sourceMap.sourceRoot || ".");
this.fs.ensureDir(this.fs.dirname(newSourceMapPath));
this.fs.writeFile(newSourceMapPath, JSON.stringify(sourceMap));
} catch (e) {
this.logger.warn(`Failed to process source-map at ${sourceMapPath}`);
this.logger.warn((_a = e.message) != null ? _a : e);
}
}
}
writeFile(file, packagePath, ngccFolder) {
if (isDtsPath(file.path.replace(/\.map$/, ""))) {
super.writeFileAndBackup(file);
} else {
const relativePath = this.fs.relative(packagePath, file.path);
const newFilePath = this.fs.resolve(ngccFolder, relativePath);
this.fs.ensureDir(this.fs.dirname(newFilePath));
this.fs.writeFile(newFilePath, file.contents);
}
}
revertFile(filePath, packagePath) {
if (isDtsPath(filePath.replace(/\.map$/, ""))) {
super.revertFileAndBackup(filePath);
} else if (this.fs.exists(filePath)) {
const relativePath = this.fs.relative(packagePath, filePath);
const newFilePath = this.fs.resolve(packagePath, NGCC_DIRECTORY, relativePath);
this.fs.removeFile(newFilePath);
}
}
updatePackageJson(entryPoint, formatProperties, ngccFolder) {
if (formatProperties.length === 0) {
return;
}
const packageJson = entryPoint.packageJson;
const packageJsonPath = this.fs.join(entryPoint.path, "package.json");
const oldFormatProp = formatProperties[0];
const oldFormatPath = packageJson[oldFormatProp];
const oldAbsFormatPath = this.fs.resolve(entryPoint.path, oldFormatPath);
const newAbsFormatPath = this.fs.resolve(ngccFolder, this.fs.relative(entryPoint.packagePath, oldAbsFormatPath));
const newFormatPath = this.fs.relative(entryPoint.path, newAbsFormatPath);
const update = this.pkgJsonUpdater.createUpdate();
for (const formatProperty of formatProperties) {
if (packageJson[formatProperty] !== oldFormatPath) {
throw new Error(`Unable to update '${packageJsonPath}': Format properties (${formatProperties.join(", ")}) map to more than one format-path.`);
}
update.addChange([`${formatProperty}${NGCC_PROPERTY_EXTENSION}`], newFormatPath, { before: formatProperty });
}
update.writeChanges(packageJsonPath, packageJson);
}
revertPackageJson(entryPoint, formatProperties) {
if (formatProperties.length === 0) {
return;
}
const packageJson = entryPoint.packageJson;
const packageJsonPath = this.fs.join(entryPoint.path, "package.json");
const update = this.pkgJsonUpdater.createUpdate();
for (const formatProperty of formatProperties) {
update.addChange([`${formatProperty}${NGCC_PROPERTY_EXTENSION}`], void 0);
}
update.writeChanges(packageJsonPath, packageJson);
}
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/ngcc_options.mjs
function getSharedSetup(options) {
const fileSystem = getFileSystem();
const absBasePath = absoluteFrom(options.basePath);
const projectPath = fileSystem.dirname(absBasePath);
const tsConfig = options.tsConfigPath !== null ? getTsConfig(options.tsConfigPath || projectPath) : null;
let { basePath, targetEntryPointPath, propertiesToConsider = SUPPORTED_FORMAT_PROPERTIES, typingsOnly = false, compileAllFormats = true, createNewEntryPointFormats = false, logger = new ConsoleLogger(LogLevel.info), pathMappings = getPathMappingsFromTsConfig(fileSystem, tsConfig, projectPath), async = false, errorOnFailedEntryPoint = false, enableI18nLegacyMessageIdFormat = true, invalidateEntryPointManifest = false, tsConfigPath } = options;
if (!!targetEntryPointPath) {
errorOnFailedEntryPoint = true;
}
if (typingsOnly) {
compileAllFormats = false;
}
checkForSolutionStyleTsConfig(fileSystem, logger, projectPath, options.tsConfigPath, tsConfig);
return {
basePath,
targetEntryPointPath,
propertiesToConsider,
typingsOnly,
compileAllFormats,
createNewEntryPointFormats,
logger,
pathMappings,
async,
errorOnFailedEntryPoint,
enableI18nLegacyMessageIdFormat,
invalidateEntryPointManifest,
tsConfigPath,
fileSystem,
absBasePath,
projectPath,
tsConfig,
getFileWriter: (pkgJsonUpdater) => createNewEntryPointFormats ? new NewEntryPointFileWriter(fileSystem, logger, errorOnFailedEntryPoint, pkgJsonUpdater) : new InPlaceFileWriter(fileSystem, logger, errorOnFailedEntryPoint)
};
}
var tsConfigCache = null;
var tsConfigPathCache = null;
function getTsConfig(tsConfigPath) {
if (tsConfigPath !== tsConfigPathCache) {
tsConfigPathCache = tsConfigPath;
tsConfigCache = readConfiguration(tsConfigPath);
}
return tsConfigCache;
}
function clearTsConfigCache() {
tsConfigPathCache = null;
tsConfigCache = null;
}
function checkForSolutionStyleTsConfig(fileSystem, logger, projectPath, tsConfigPath, tsConfig) {
if (tsConfigPath !== null && !tsConfigPath && tsConfig !== null && tsConfig.rootNames.length === 0 && tsConfig.projectReferences !== void 0 && tsConfig.projectReferences.length > 0) {
logger.warn(`The inferred tsconfig file "${tsConfig.project}" appears to be "solution-style" since it contains no root files but does contain project references.
This is probably not wanted, since ngcc is unable to infer settings like "paths" mappings from such a file.
Perhaps you should have explicitly specified one of the referenced projects using the --tsconfig option. For example:
` + tsConfig.projectReferences.map((ref) => ` ngcc ... --tsconfig "${ref.originalPath}"
`).join("") + `
Find out more about solution-style tsconfig at https://devblogs.microsoft.com/typescript/announcing-typescript-3-9/#solution-style-tsconfig.
If you did intend to use this file, then you can hide this warning by providing it explicitly:
ngcc ... --tsconfig "${fileSystem.relative(projectPath, tsConfig.project)}"`);
}
}
function getMaxNumberOfWorkers() {
const maxWorkers = process.env.NGCC_MAX_WORKERS;
if (maxWorkers === void 0) {
return Math.max(1, Math.min(4, os.cpus().length - 1));
}
const numericMaxWorkers = +maxWorkers.trim();
if (!Number.isInteger(numericMaxWorkers)) {
throw new Error("NGCC_MAX_WORKERS should be an integer.");
} else if (numericMaxWorkers < 1) {
throw new Error("NGCC_MAX_WORKERS should be at least 1.");
}
return numericMaxWorkers;
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/tasks/utils.mjs
var stringifyTask = (task) => `{entryPoint: ${task.entryPoint.name}, formatProperty: ${task.formatProperty}, processDts: ${DtsProcessing[task.processDts]}}`;
function computeTaskDependencies(tasks, graph) {
const dependencies = new TaskDependencies();
const candidateDependencies = /* @__PURE__ */ new Map();
tasks.forEach((task) => {
const entryPointPath = task.entryPoint.path;
const deps = graph.dependenciesOf(entryPointPath);
const taskDependencies = deps.filter((dep) => candidateDependencies.has(dep)).map((dep) => candidateDependencies.get(dep));
if (taskDependencies.length > 0) {
for (const dependency of taskDependencies) {
const taskDependents = getDependentsSet(dependencies, dependency);
taskDependents.add(task);
}
}
if (task.processDts !== DtsProcessing.No) {
if (candidateDependencies.has(entryPointPath)) {
const otherTask = candidateDependencies.get(entryPointPath);
throw new Error(`Invariant violated: Multiple tasks are assigned generating typings for '${entryPointPath}':
- ${stringifyTask(otherTask)}
- ${stringifyTask(task)}`);
}
candidateDependencies.set(entryPointPath, task);
} else {
if (candidateDependencies.has(entryPointPath)) {
const typingsTask = candidateDependencies.get(entryPointPath);
const typingsTaskDependents = getDependentsSet(dependencies, typingsTask);
typingsTaskDependents.add(task);
}
}
});
return dependencies;
}
function getDependentsSet(map, task) {
if (!map.has(task)) {
map.set(task, /* @__PURE__ */ new Set());
}
return map.get(task);
}
function getBlockedTasks(dependencies) {
const blockedTasks = /* @__PURE__ */ new Map();
for (const [dependency, dependents] of dependencies) {
for (const dependent of dependents) {
const dependentSet = getDependentsSet(blockedTasks, dependent);
dependentSet.add(dependency);
}
}
return blockedTasks;
}
function sortTasksByPriority(tasks, dependencies) {
const priorityPerTask = /* @__PURE__ */ new Map();
const computePriority = (task, idx) => [dependencies.has(task) ? dependencies.get(task).size : 0, idx];
tasks.forEach((task, i) => priorityPerTask.set(task, computePriority(task, i)));
return tasks.slice().sort((task1, task2) => {
const [p1, idx1] = priorityPerTask.get(task1);
const [p2, idx2] = priorityPerTask.get(task2);
return p2 - p1 || idx1 - idx2;
});
}
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/execution/cluster/utils.mjs
import cluster from "cluster";
var Deferred = class {
constructor() {
this.promise = new Promise((resolve, reject) => {
this.resolve = resolve;
this.reject = reject;
});
}
};
var sendMessageToMaster = (msg) => {
if (cluster.isMaster) {
throw new Error("Unable to send message to the master process: Already on the master process.");
}
return new Promise((resolve, reject) => {
if (process.send === void 0) {
throw new Error("Unable to send message to the master process: Missing `process.send()`.");
}
process.send(msg, (err) => err === null ? resolve() : reject(err));
});
};
var sendMessageToWorker = (workerId, msg) => {
if (!cluster.isMaster) {
throw new Error("Unable to send message to worker process: Sender is not the master process.");
}
const worker = cluster.workers[workerId];
if (worker === void 0 || worker.isDead() || !worker.isConnected()) {
throw new Error("Unable to send message to worker process: Recipient does not exist or has disconnected.");
}
return new Promise((resolve, reject) => {
worker.send(msg, void 0, (err) => err === null ? resolve() : reject(err));
});
};
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/writing/package_json_updater.mjs
var PackageJsonUpdate = class {
constructor(writeChangesImpl) {
this.writeChangesImpl = writeChangesImpl;
this.changes = [];
this.applied = false;
}
addChange(propertyPath, value, positioning = "unimportant") {
this.ensureNotApplied();
this.changes.push([propertyPath, value, positioning]);
return this;
}
writeChanges(packageJsonPath, parsedJson) {
this.ensureNotApplied();
this.ensureNotSynthesized(parsedJson);
this.writeChangesImpl(this.changes, packageJsonPath, parsedJson);
this.applied = true;
}
ensureNotApplied() {
if (this.applied) {
throw new Error("Trying to apply a `PackageJsonUpdate` that has already been applied.");
}
}
ensureNotSynthesized(parsedJson) {
if (parsedJson == null ? void 0 : parsedJson.synthesized) {
throw new Error("Trying to update a non-existent (synthesized) `package.json` file.");
}
}
};
var DirectPackageJsonUpdater = class {
constructor(fs) {
this.fs = fs;
}
createUpdate() {
return new PackageJsonUpdate((...args) => this.writeChanges(...args));
}
writeChanges(changes, packageJsonPath, preExistingParsedJson) {
if (changes.length === 0) {
throw new Error(`No changes to write to '${packageJsonPath}'.`);
}
const parsedJson = this.fs.exists(packageJsonPath) ? JSON.parse(this.fs.readFile(packageJsonPath)) : {};
for (const [propPath, value, positioning] of changes) {
if (propPath.length === 0) {
throw new Error(`Missing property path for writing value to '${packageJsonPath}'.`);
}
applyChange(parsedJson, propPath, value, positioning);
if (preExistingParsedJson) {
applyChange(preExistingParsedJson, propPath, value, "unimportant");
}
}
this.fs.ensureDir(dirname(packageJsonPath));
this.fs.writeFile(packageJsonPath, `${JSON.stringify(parsedJson, null, 2)}
`);
}
};
function applyChange(ctx, propPath, value, positioning) {
const lastPropIdx = propPath.length - 1;
const lastProp = propPath[lastPropIdx];
for (let i = 0; i < lastPropIdx; i++) {
const key = propPath[i];
const newCtx = ctx.hasOwnProperty(key) ? ctx[key] : ctx[key] = {};
if (typeof newCtx !== "object" || newCtx === null || Array.isArray(newCtx)) {
throw new Error(`Property path '${propPath.join(".")}' does not point to an object.`);
}
ctx = newCtx;
}
ctx[lastProp] = value;
positionProperty(ctx, lastProp, positioning);
}
function movePropBefore(ctx, prop, isNextProp) {
const allProps = Object.keys(ctx);
const otherProps = allProps.filter((p) => p !== prop);
const nextPropIdx = otherProps.findIndex(isNextProp);
const propsToShift = nextPropIdx === -1 ? [] : otherProps.slice(nextPropIdx);
movePropToEnd(ctx, prop);
propsToShift.forEach((p) => movePropToEnd(ctx, p));
}
function movePropToEnd(ctx, prop) {
const value = ctx[prop];
delete ctx[prop];
ctx[prop] = value;
}
function positionProperty(ctx, prop, positioning) {
switch (positioning) {
case "alphabetic":
movePropBefore(ctx, prop, (p) => p > prop);
break;
case "unimportant":
break;
default:
if (typeof positioning !== "object" || positioning.before === void 0) {
throw new Error(`Unknown positioning (${JSON.stringify(positioning)}) for property '${prop}'.`);
}
movePropBefore(ctx, prop, (p) => p === positioning.before);
break;
}
}
export {
isWildcardReexportStatement,
isRequireCall,
isRelativePath,
resolveFileWithPostfixes,
loadJson,
loadSecondaryEntryPointInfoForApfV14,
parseStatementForUmdModule,
getImportsOfUmdModule,
SUPPORTED_FORMAT_PROPERTIES,
NO_ENTRY_POINT,
IGNORED_ENTRY_POINT,
INCOMPATIBLE_ENTRY_POINT,
getEntryPointInfo,
isEntryPoint,
getEntryPointFormat,
NGCC_BACKUP_EXTENSION,
NGCC_DIRECTORY,
NGCC_PROPERTY_EXTENSION,
getPathMappingsFromTsConfig,
DtsProcessing,
stringifyTask,
computeTaskDependencies,
getBlockedTasks,
sortTasksByPriority,
Deferred,
sendMessageToMaster,
sendMessageToWorker,
NGCC_TIMED_OUT_EXIT_CODE,
getCreateCompileFn,
getSharedSetup,
clearTsConfigCache,
getMaxNumberOfWorkers,
PackageJsonUpdate,
DirectPackageJsonUpdater,
applyChange
};
/**
* @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.io/license
*/
//# sourceMappingURL=chunk-6SQNW4B4.js.map