@angular/compiler-cli 19.0.0-next.9 → 19.0.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/{chunk-UJ2J6WV4.js → chunk-37JMVF7H.js} +9 -7
- package/bundles/chunk-37JMVF7H.js.map +6 -0
- package/bundles/{chunk-3Z25BX6N.js → chunk-77D5CI2U.js} +19 -12
- package/bundles/chunk-77D5CI2U.js.map +6 -0
- package/bundles/{chunk-ZQ7CP635.js → chunk-AJPANXTD.js} +2 -2
- package/bundles/{chunk-U6J7NRJM.js → chunk-BQXOZNTE.js} +233 -102
- package/bundles/chunk-BQXOZNTE.js.map +6 -0
- package/bundles/{chunk-RT2QTF73.js → chunk-FKXFEX7K.js} +2 -1
- package/bundles/{chunk-RT2QTF73.js.map → chunk-FKXFEX7K.js.map} +1 -1
- package/bundles/{chunk-5W3ITOS7.js → chunk-FYHKIXOX.js} +2 -2
- package/bundles/{chunk-GCXHOI3T.js → chunk-HIY6A3BW.js} +896 -280
- package/bundles/chunk-HIY6A3BW.js.map +6 -0
- package/bundles/{chunk-JF4LKQQP.js → chunk-IZRNIUQB.js} +61 -24
- package/bundles/chunk-IZRNIUQB.js.map +6 -0
- package/bundles/{chunk-OSPR7JSU.js → chunk-KFTXE4DT.js} +115 -47
- package/bundles/chunk-KFTXE4DT.js.map +6 -0
- package/bundles/{chunk-XI2RTGAL.js → chunk-KPQ72R34.js} +9 -2
- package/bundles/{chunk-XP6IMCQP.js → chunk-LZMAR6SN.js} +3 -3
- package/bundles/{chunk-XSNUHRLJ.js → chunk-Q2WE7ECN.js} +8 -2
- package/bundles/{chunk-XSNUHRLJ.js.map → chunk-Q2WE7ECN.js.map} +1 -1
- package/bundles/index.js +15 -14
- package/bundles/index.js.map +1 -1
- package/bundles/linker/babel/index.js +25 -25
- package/bundles/linker/babel/index.js.map +1 -1
- package/bundles/linker/index.js +5 -5
- package/bundles/private/bazel.js +2 -2
- package/bundles/private/localize.js +4 -4
- package/bundles/private/migrations.js +5 -5
- package/bundles/private/tooling.js +7 -7
- package/bundles/src/bin/ng_xi18n.js +8 -8
- package/bundles/src/bin/ngc.js +8 -8
- package/bundles_metadata.json +1 -1
- package/linker/babel/src/ast/babel_ast_factory.d.ts +2 -2
- package/linker/src/file_linker/partial_linkers/partial_directive_linker_1.d.ts +2 -2
- package/linker/src/file_linker/partial_linkers/partial_pipe_linker_1.d.ts +2 -2
- package/linker/src/file_linker/partial_linkers/util.d.ts +2 -1
- package/package.json +3 -3
- package/src/ngtsc/annotations/common/src/debug_info.d.ts +2 -1
- package/src/ngtsc/annotations/common/src/util.d.ts +1 -1
- package/src/ngtsc/annotations/component/src/handler.d.ts +8 -3
- package/src/ngtsc/annotations/directive/src/handler.d.ts +2 -1
- package/src/ngtsc/annotations/directive/src/shared.d.ts +1 -1
- package/src/ngtsc/annotations/src/pipe.d.ts +2 -1
- package/src/ngtsc/core/src/compiler.d.ts +7 -0
- package/src/ngtsc/hmr/index.d.ts +9 -0
- package/src/ngtsc/hmr/src/extract_locals.d.ts +20 -0
- package/src/ngtsc/hmr/src/metadata.d.ts +23 -0
- package/src/ngtsc/hmr/src/update_declaration.d.ts +17 -0
- package/src/ngtsc/imports/src/core.d.ts +6 -0
- package/src/ngtsc/metadata/src/api.d.ts +5 -0
- package/src/ngtsc/metadata/src/util.d.ts +5 -2
- package/src/ngtsc/reflection/src/typescript.d.ts +6 -0
- package/src/ngtsc/transform/src/api.d.ts +4 -0
- package/src/ngtsc/transform/src/compilation.d.ts +1 -0
- package/src/ngtsc/translator/src/api/ast_factory.d.ts +2 -2
- package/src/ngtsc/translator/src/typescript_ast_factory.d.ts +2 -2
- package/src/ngtsc/util/src/path.d.ts +9 -0
- package/src/ngtsc/validation/src/rules/unused_standalone_imports_rule.d.ts +5 -3
- package/bundles/chunk-3Z25BX6N.js.map +0 -6
- package/bundles/chunk-GCXHOI3T.js.map +0 -6
- package/bundles/chunk-JF4LKQQP.js.map +0 -6
- package/bundles/chunk-OSPR7JSU.js.map +0 -6
- package/bundles/chunk-U6J7NRJM.js.map +0 -6
- package/bundles/chunk-UJ2J6WV4.js.map +0 -6
- /package/bundles/{chunk-ZQ7CP635.js.map → chunk-AJPANXTD.js.map} +0 -0
- /package/bundles/{chunk-5W3ITOS7.js.map → chunk-FYHKIXOX.js.map} +0 -0
- /package/bundles/{chunk-XI2RTGAL.js.map → chunk-KPQ72R34.js.map} +0 -0
- /package/bundles/{chunk-XP6IMCQP.js.map → chunk-LZMAR6SN.js.map} +0 -0
|
@@ -16,7 +16,7 @@ export declare class BabelAstFactory implements AstFactory<t.Statement, t.Expres
|
|
|
16
16
|
constructor(
|
|
17
17
|
/** The absolute path to the source file being compiled. */
|
|
18
18
|
sourceUrl: string);
|
|
19
|
-
attachComments(statement: t.Statement, leadingComments: LeadingComment[]): void;
|
|
19
|
+
attachComments(statement: t.Statement | t.Expression, leadingComments: LeadingComment[]): void;
|
|
20
20
|
createArrayLiteral: typeof t.arrayExpression;
|
|
21
21
|
createAssignment(target: t.Expression, value: t.Expression): t.Expression;
|
|
22
22
|
createBinaryExpression(leftOperand: t.Expression, operator: BinaryOperator, rightOperand: t.Expression): t.Expression;
|
|
@@ -30,7 +30,7 @@ export declare class BabelAstFactory implements AstFactory<t.Statement, t.Expres
|
|
|
30
30
|
createFunctionExpression(functionName: string | null, parameters: string[], body: t.Statement): t.Expression;
|
|
31
31
|
createIdentifier: typeof t.identifier;
|
|
32
32
|
createIfStatement: typeof t.ifStatement;
|
|
33
|
-
createDynamicImport(url: string): t.Expression;
|
|
33
|
+
createDynamicImport(url: string | t.Expression): t.Expression;
|
|
34
34
|
createLiteral(value: string | number | boolean | null | undefined): t.Expression;
|
|
35
35
|
createNewExpression: typeof t.newExpression;
|
|
36
36
|
createObjectLiteral(properties: ObjectLiteralProperty<t.Expression>[]): t.Expression;
|
|
@@ -17,10 +17,10 @@ export declare class PartialDirectiveLinkerVersion1<TExpression> implements Part
|
|
|
17
17
|
private sourceUrl;
|
|
18
18
|
private code;
|
|
19
19
|
constructor(sourceUrl: AbsoluteFsPath, code: string);
|
|
20
|
-
linkPartialDeclaration(constantPool: ConstantPool, metaObj: AstObject<R3PartialDeclaration, TExpression
|
|
20
|
+
linkPartialDeclaration(constantPool: ConstantPool, metaObj: AstObject<R3PartialDeclaration, TExpression>, version: string): LinkedDefinition;
|
|
21
21
|
}
|
|
22
22
|
/**
|
|
23
23
|
* Derives the `R3DirectiveMetadata` structure from the AST object.
|
|
24
24
|
*/
|
|
25
|
-
export declare function toR3DirectiveMeta<TExpression>(metaObj: AstObject<R3DeclareDirectiveMetadata, TExpression>, code: string, sourceUrl: AbsoluteFsPath): R3DirectiveMetadata;
|
|
25
|
+
export declare function toR3DirectiveMeta<TExpression>(metaObj: AstObject<R3DeclareDirectiveMetadata, TExpression>, code: string, sourceUrl: AbsoluteFsPath, version: string): R3DirectiveMetadata;
|
|
26
26
|
export declare function createSourceSpan(range: Range, code: string, sourceUrl: string): ParseSourceSpan;
|
|
@@ -13,9 +13,9 @@ import { LinkedDefinition, PartialLinker } from './partial_linker';
|
|
|
13
13
|
*/
|
|
14
14
|
export declare class PartialPipeLinkerVersion1<TExpression> implements PartialLinker<TExpression> {
|
|
15
15
|
constructor();
|
|
16
|
-
linkPartialDeclaration(constantPool: ConstantPool, metaObj: AstObject<R3PartialDeclaration, TExpression
|
|
16
|
+
linkPartialDeclaration(constantPool: ConstantPool, metaObj: AstObject<R3PartialDeclaration, TExpression>, version: string): LinkedDefinition;
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
19
|
* Derives the `R3PipeMetadata` structure from the AST object.
|
|
20
20
|
*/
|
|
21
|
-
export declare function toR3PipeMeta<TExpression>(metaObj: AstObject<R3DeclarePipeMetadata, TExpression
|
|
21
|
+
export declare function toR3PipeMeta<TExpression>(metaObj: AstObject<R3DeclarePipeMetadata, TExpression>, version: string): R3PipeMetadata;
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { MaybeForwardRefExpression, outputAst as o, R3DeclareDependencyMetadata, R3DependencyMetadata, R3Reference } from '@angular/compiler';
|
|
9
9
|
import { AstObject, AstValue } from '../../ast/ast_value';
|
|
10
|
-
export declare const PLACEHOLDER_VERSION = "19.0.0-
|
|
10
|
+
export declare const PLACEHOLDER_VERSION = "19.0.0-rc.1";
|
|
11
11
|
export declare function wrapReference<TExpression>(wrapped: o.WrappedNodeExpr<TExpression>): R3Reference;
|
|
12
12
|
/**
|
|
13
13
|
* Parses the value of an enum from the AST value's symbol name.
|
|
@@ -28,3 +28,4 @@ export declare function getDependency<TExpression>(depObj: AstObject<R3DeclareDe
|
|
|
28
28
|
* If there is no forwardRef call expression then we just return the opaque type.
|
|
29
29
|
*/
|
|
30
30
|
export declare function extractForwardRef<TExpression>(expr: AstValue<unknown, TExpression>): MaybeForwardRefExpression<o.WrappedNodeExpr<TExpression>>;
|
|
31
|
+
export declare function getDefaultStandaloneValue(version: string): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler-cli",
|
|
3
|
-
"version": "19.0.0-
|
|
3
|
+
"version": "19.0.0-rc.1",
|
|
4
4
|
"description": "Angular - the compiler CLI for Node.js",
|
|
5
5
|
"typings": "index.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@babel/core": "7.
|
|
46
|
+
"@babel/core": "7.26.0",
|
|
47
47
|
"@jridgewell/sourcemap-codec": "^1.4.14",
|
|
48
48
|
"reflect-metadata": "^0.2.0",
|
|
49
49
|
"chokidar": "^4.0.0",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"yargs": "^17.2.1"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@angular/compiler": "19.0.0-
|
|
56
|
+
"@angular/compiler": "19.0.0-rc.1",
|
|
57
57
|
"typescript": ">=5.5 <5.7"
|
|
58
58
|
},
|
|
59
59
|
"repository": {
|
|
@@ -6,5 +6,6 @@
|
|
|
6
6
|
* found in the LICENSE file at https://angular.dev/license
|
|
7
7
|
*/
|
|
8
8
|
import { R3ClassDebugInfo } from '@angular/compiler';
|
|
9
|
+
import ts from 'typescript';
|
|
9
10
|
import { DeclarationNode, ReflectionHost } from '../../../reflection';
|
|
10
|
-
export declare function extractClassDebugInfo(clazz: DeclarationNode, reflection: ReflectionHost, rootDirs: ReadonlyArray<string>, forbidOrphanRendering: boolean): R3ClassDebugInfo | null;
|
|
11
|
+
export declare function extractClassDebugInfo(clazz: DeclarationNode, reflection: ReflectionHost, compilerHost: Pick<ts.CompilerHost, 'getCanonicalFileName'>, rootDirs: ReadonlyArray<string>, forbidOrphanRendering: boolean): R3ClassDebugInfo | null;
|
|
@@ -93,7 +93,7 @@ export declare function createSourceSpan(node: ts.Node): ParseSourceSpan;
|
|
|
93
93
|
/**
|
|
94
94
|
* Collate the factory and definition compiled results into an array of CompileResult objects.
|
|
95
95
|
*/
|
|
96
|
-
export declare function compileResults(fac: CompileResult, def: R3CompiledExpression, metadataStmt: Statement | null, propName: string, additionalFields: CompileResult[] | null, deferrableImports: Set<ts.ImportDeclaration> | null, debugInfo?: Statement | null): CompileResult[];
|
|
96
|
+
export declare function compileResults(fac: CompileResult, def: R3CompiledExpression, metadataStmt: Statement | null, propName: string, additionalFields: CompileResult[] | null, deferrableImports: Set<ts.ImportDeclaration> | null, debugInfo?: Statement | null, hmrInitializer?: Statement | null): CompileResult[];
|
|
97
97
|
export declare function toFactoryMetadata(meta: Omit<R3FactoryMetadata, 'target'>, target: FactoryTarget): R3FactoryMetadata;
|
|
98
98
|
export declare function resolveImportedFile(moduleResolver: ModuleResolver, importedFile: ImportedFile, expr: Expression, origin: ts.SourceFile): ts.SourceFile | null;
|
|
99
99
|
/**
|
|
@@ -16,7 +16,7 @@ import { HostDirectivesResolver, MetadataReader, MetadataRegistry, ResourceRegis
|
|
|
16
16
|
import { PartialEvaluator } from '../../../partial_evaluator';
|
|
17
17
|
import { PerfRecorder } from '../../../perf';
|
|
18
18
|
import { ClassDeclaration, Decorator, ReflectionHost } from '../../../reflection';
|
|
19
|
-
import { ComponentScopeReader,
|
|
19
|
+
import { ComponentScopeReader, LocalModuleScopeRegistry, TypeCheckScopeRegistry } from '../../../scope';
|
|
20
20
|
import { AnalysisOutput, CompilationMode, CompileResult, DecoratorHandler, DetectResult, HandlerPrecedence, ResolveResult } from '../../../transform';
|
|
21
21
|
import { TypeCheckContext } from '../../../typecheck/api';
|
|
22
22
|
import { ExtendedTemplateChecker } from '../../../typecheck/extended/api';
|
|
@@ -35,7 +35,7 @@ export declare class ComponentDecoratorHandler implements DecoratorHandler<Decor
|
|
|
35
35
|
private metaRegistry;
|
|
36
36
|
private metaReader;
|
|
37
37
|
private scopeReader;
|
|
38
|
-
private
|
|
38
|
+
private compilerHost;
|
|
39
39
|
private scopeRegistry;
|
|
40
40
|
private typeCheckScopeRegistry;
|
|
41
41
|
private resourceRegistry;
|
|
@@ -71,7 +71,9 @@ export declare class ComponentDecoratorHandler implements DecoratorHandler<Decor
|
|
|
71
71
|
private readonly jitDeclarationRegistry;
|
|
72
72
|
private readonly i18nPreserveSignificantWhitespace;
|
|
73
73
|
private readonly strictStandalone;
|
|
74
|
-
|
|
74
|
+
private readonly enableHmr;
|
|
75
|
+
private readonly implicitStandaloneValue;
|
|
76
|
+
constructor(reflector: ReflectionHost, evaluator: PartialEvaluator, metaRegistry: MetadataRegistry, metaReader: MetadataReader, scopeReader: ComponentScopeReader, compilerHost: Pick<ts.CompilerHost, 'getCanonicalFileName'>, scopeRegistry: LocalModuleScopeRegistry, typeCheckScopeRegistry: TypeCheckScopeRegistry, resourceRegistry: ResourceRegistry, isCore: boolean, strictCtorDeps: boolean, resourceLoader: ResourceLoader, rootDirs: ReadonlyArray<string>, defaultPreserveWhitespaces: boolean, i18nUseExternalIds: boolean, enableI18nLegacyMessageIdFormat: boolean, usePoisonedData: boolean, i18nNormalizeLineEndingsInICUs: boolean, moduleResolver: ModuleResolver, cycleAnalyzer: CycleAnalyzer, cycleHandlingStrategy: CycleHandlingStrategy, refEmitter: ReferenceEmitter, referencesRegistry: ReferencesRegistry, depTracker: DependencyTracker | null, injectableRegistry: InjectableClassRegistry, semanticDepGraphUpdater: SemanticDepGraphUpdater | null, annotateForClosureCompiler: boolean, perf: PerfRecorder, hostDirectivesResolver: HostDirectivesResolver, importTracker: ImportedSymbolsTracker, includeClassMetadata: boolean, compilationMode: CompilationMode, deferredSymbolTracker: DeferredSymbolTracker, forbidOrphanRendering: boolean, enableBlockSyntax: boolean, enableLetSyntax: boolean, externalRuntimeStyles: boolean, localCompilationExtraImportsTracker: LocalCompilationExtraImportsTracker | null, jitDeclarationRegistry: JitDeclarationRegistry, i18nPreserveSignificantWhitespace: boolean, strictStandalone: boolean, enableHmr: boolean, implicitStandaloneValue: boolean);
|
|
75
77
|
private literalCache;
|
|
76
78
|
private elementSchemaRegistry;
|
|
77
79
|
/**
|
|
@@ -81,6 +83,8 @@ export declare class ComponentDecoratorHandler implements DecoratorHandler<Decor
|
|
|
81
83
|
*/
|
|
82
84
|
private preanalyzeTemplateCache;
|
|
83
85
|
private preanalyzeStylesCache;
|
|
86
|
+
/** Whether generated code for a component can defer its dependencies. */
|
|
87
|
+
private readonly canDeferDeps;
|
|
84
88
|
private extractTemplateOptions;
|
|
85
89
|
readonly precedence = HandlerPrecedence.PRIMARY;
|
|
86
90
|
readonly name = "ComponentDecoratorHandler";
|
|
@@ -99,6 +103,7 @@ export declare class ComponentDecoratorHandler implements DecoratorHandler<Decor
|
|
|
99
103
|
compileFull(node: ClassDeclaration, analysis: Readonly<ComponentAnalysisData>, resolution: Readonly<ComponentResolutionData>, pool: ConstantPool): CompileResult[];
|
|
100
104
|
compilePartial(node: ClassDeclaration, analysis: Readonly<ComponentAnalysisData>, resolution: Readonly<ComponentResolutionData>): CompileResult[];
|
|
101
105
|
compileLocal(node: ClassDeclaration, analysis: Readonly<ComponentAnalysisData>, resolution: Readonly<Partial<ComponentResolutionData>>, pool: ConstantPool): CompileResult[];
|
|
106
|
+
compileHmrUpdateDeclaration(node: ClassDeclaration, analysis: Readonly<ComponentAnalysisData>, resolution: Readonly<ComponentResolutionData>): ts.FunctionDeclaration | null;
|
|
102
107
|
/**
|
|
103
108
|
* Locates defer blocks in case scope information is not available.
|
|
104
109
|
* For example, this happens in the local compilation mode.
|
|
@@ -52,7 +52,8 @@ export declare class DirectiveDecoratorHandler implements DecoratorHandler<Decor
|
|
|
52
52
|
private readonly compilationMode;
|
|
53
53
|
private readonly jitDeclarationRegistry;
|
|
54
54
|
private readonly strictStandalone;
|
|
55
|
-
|
|
55
|
+
private readonly implicitStandaloneValue;
|
|
56
|
+
constructor(reflector: ReflectionHost, evaluator: PartialEvaluator, metaRegistry: MetadataRegistry, scopeRegistry: LocalModuleScopeRegistry, metaReader: MetadataReader, injectableRegistry: InjectableClassRegistry, refEmitter: ReferenceEmitter, referencesRegistry: ReferencesRegistry, isCore: boolean, strictCtorDeps: boolean, semanticDepGraphUpdater: SemanticDepGraphUpdater | null, annotateForClosureCompiler: boolean, perf: PerfRecorder, importTracker: ImportedSymbolsTracker, includeClassMetadata: boolean, compilationMode: CompilationMode, jitDeclarationRegistry: JitDeclarationRegistry, strictStandalone: boolean, implicitStandaloneValue: boolean);
|
|
56
57
|
readonly precedence = HandlerPrecedence.PRIMARY;
|
|
57
58
|
readonly name = "DirectiveDecoratorHandler";
|
|
58
59
|
detect(node: ClassDeclaration, decorators: Decorator[] | null): DetectResult<Decorator | null> | undefined;
|
|
@@ -21,7 +21,7 @@ export declare const queryDecoratorNames: QueryDecoratorName[];
|
|
|
21
21
|
* appear in the declarations of an `NgModule` and additional verification is done when processing
|
|
22
22
|
* the module.
|
|
23
23
|
*/
|
|
24
|
-
export declare function extractDirectiveMetadata(clazz: ClassDeclaration, decorator: Readonly<Decorator>, reflector: ReflectionHost, importTracker: ImportedSymbolsTracker, evaluator: PartialEvaluator, refEmitter: ReferenceEmitter, referencesRegistry: ReferencesRegistry, isCore: boolean, annotateForClosureCompiler: boolean, compilationMode: CompilationMode, defaultSelector: string | null, strictStandalone: boolean): {
|
|
24
|
+
export declare function extractDirectiveMetadata(clazz: ClassDeclaration, decorator: Readonly<Decorator>, reflector: ReflectionHost, importTracker: ImportedSymbolsTracker, evaluator: PartialEvaluator, refEmitter: ReferenceEmitter, referencesRegistry: ReferencesRegistry, isCore: boolean, annotateForClosureCompiler: boolean, compilationMode: CompilationMode, defaultSelector: string | null, strictStandalone: boolean, implicitStandaloneValue: boolean): {
|
|
25
25
|
jitForced: false;
|
|
26
26
|
decorator: Map<string, ts.Expression>;
|
|
27
27
|
metadata: R3DirectiveMetadata;
|
|
@@ -42,7 +42,8 @@ export declare class PipeDecoratorHandler implements DecoratorHandler<Decorator,
|
|
|
42
42
|
private readonly compilationMode;
|
|
43
43
|
private readonly generateExtraImportsInLocalMode;
|
|
44
44
|
private readonly strictStandalone;
|
|
45
|
-
|
|
45
|
+
private readonly implicitStandaloneValue;
|
|
46
|
+
constructor(reflector: ReflectionHost, evaluator: PartialEvaluator, metaRegistry: MetadataRegistry, scopeRegistry: LocalModuleScopeRegistry, injectableRegistry: InjectableClassRegistry, isCore: boolean, perf: PerfRecorder, includeClassMetadata: boolean, compilationMode: CompilationMode, generateExtraImportsInLocalMode: boolean, strictStandalone: boolean, implicitStandaloneValue: boolean);
|
|
46
47
|
readonly precedence = HandlerPrecedence.PRIMARY;
|
|
47
48
|
readonly name = "PipeDecoratorHandler";
|
|
48
49
|
detect(node: ClassDeclaration, decorators: Decorator[] | null): DetectResult<Decorator> | undefined;
|
|
@@ -133,6 +133,8 @@ export declare class NgCompiler {
|
|
|
133
133
|
private readonly enableBlockSyntax;
|
|
134
134
|
private readonly enableLetSyntax;
|
|
135
135
|
private readonly angularCoreVersion;
|
|
136
|
+
private readonly enableHmr;
|
|
137
|
+
private readonly implicitStandaloneValue;
|
|
136
138
|
/**
|
|
137
139
|
* `NgCompiler` can be reused for multiple compilations (for resource-only changes), and each
|
|
138
140
|
* new compilation uses a fresh `PerfRecorder`. Thus, classes created with a lifespan of the
|
|
@@ -251,6 +253,11 @@ export declare class NgCompiler {
|
|
|
251
253
|
* Collect i18n messages into the `Xi18nContext`.
|
|
252
254
|
*/
|
|
253
255
|
xi18n(ctx: Xi18nContext): void;
|
|
256
|
+
/**
|
|
257
|
+
* Emits the JavaScript module that can be used to replace the metadata of a class during HMR.
|
|
258
|
+
* @param node Class for which to generate the update module.
|
|
259
|
+
*/
|
|
260
|
+
emitHmrUpdateModule(node: DeclarationNode): string | null;
|
|
254
261
|
private ensureAnalyzed;
|
|
255
262
|
private analyzeSync;
|
|
256
263
|
private resolveCompilation;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
|
4
|
+
*
|
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
+
* found in the LICENSE file at https://angular.dev/license
|
|
7
|
+
*/
|
|
8
|
+
export * from './src/metadata';
|
|
9
|
+
export * from './src/update_declaration';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
|
4
|
+
*
|
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
+
* found in the LICENSE file at https://angular.dev/license
|
|
7
|
+
*/
|
|
8
|
+
import { R3CompiledExpression, outputAst as o } from '@angular/compiler';
|
|
9
|
+
import { DeclarationNode } from '../../reflection';
|
|
10
|
+
import { CompileResult } from '../../transform';
|
|
11
|
+
/**
|
|
12
|
+
* Determines the names of the file-level locals that the HMR
|
|
13
|
+
* initializer needs to capture and pass along.
|
|
14
|
+
* @param sourceFile File in which the file is being compiled.
|
|
15
|
+
* @param definition Compiled component definition.
|
|
16
|
+
* @param factory Compiled component factory.
|
|
17
|
+
* @param classMetadata Compiled `setClassMetadata` expression, if any.
|
|
18
|
+
* @param debugInfo Compiled `setClassDebugInfo` expression, if any.
|
|
19
|
+
*/
|
|
20
|
+
export declare function extractHmrLocals(node: DeclarationNode, definition: R3CompiledExpression, factory: CompileResult, classMetadata: o.Statement | null, debugInfo: o.Statement | null): string[];
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
|
4
|
+
*
|
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
+
* found in the LICENSE file at https://angular.dev/license
|
|
7
|
+
*/
|
|
8
|
+
import { R3CompiledExpression, R3HmrMetadata, outputAst as o } from '@angular/compiler';
|
|
9
|
+
import { DeclarationNode, ReflectionHost } from '../../reflection';
|
|
10
|
+
import { CompileResult } from '../../transform';
|
|
11
|
+
import ts from 'typescript';
|
|
12
|
+
/**
|
|
13
|
+
* Extracts the HMR metadata for a class declaration.
|
|
14
|
+
* @param clazz Class being analyzed.
|
|
15
|
+
* @param reflection Reflection host.
|
|
16
|
+
* @param compilerHost Compiler host to use when resolving file names.
|
|
17
|
+
* @param rootDirs Root directories configured by the user.
|
|
18
|
+
* @param definition Analyzed component definition.
|
|
19
|
+
* @param factory Analyzed component factory.
|
|
20
|
+
* @param classMetadata Analyzed `setClassMetadata` expression, if any.
|
|
21
|
+
* @param debugInfo Analyzed `setClassDebugInfo` expression, if any.
|
|
22
|
+
*/
|
|
23
|
+
export declare function extractHmrMetatadata(clazz: DeclarationNode, reflection: ReflectionHost, compilerHost: Pick<ts.CompilerHost, 'getCanonicalFileName'>, rootDirs: readonly string[], definition: R3CompiledExpression, factory: CompileResult, classMetadata: o.Statement | null, debugInfo: o.Statement | null): R3HmrMetadata | null;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright Google LLC All Rights Reserved.
|
|
4
|
+
*
|
|
5
|
+
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
+
* found in the LICENSE file at https://angular.dev/license
|
|
7
|
+
*/
|
|
8
|
+
import { R3HmrMetadata, outputAst as o } from '@angular/compiler';
|
|
9
|
+
import { CompileResult } from '../../transform';
|
|
10
|
+
import ts from 'typescript';
|
|
11
|
+
/**
|
|
12
|
+
* Gets the declaration for the function that replaces the metadata of a class during HMR.
|
|
13
|
+
* @param compilationResults Code generated for the class during compilation.
|
|
14
|
+
* @param meta HMR metadata about the class.
|
|
15
|
+
* @param sourceFile File in which the class is defined.
|
|
16
|
+
*/
|
|
17
|
+
export declare function getHmrUpdateDeclaration(compilationResults: CompileResult[], constantStatements: o.Statement[], meta: R3HmrMetadata, sourceFile: ts.SourceFile): ts.FunctionDeclaration;
|
|
@@ -18,6 +18,10 @@ export interface ImportRewriter {
|
|
|
18
18
|
* Optionally rewrite the given module specifier in the context of a given file.
|
|
19
19
|
*/
|
|
20
20
|
rewriteSpecifier(specifier: string, inContextOfFile: string): string;
|
|
21
|
+
/**
|
|
22
|
+
* Optionally rewrite the identifier of a namespace import.
|
|
23
|
+
*/
|
|
24
|
+
rewriteNamespaceImportIdentifier(specifier: string, moduleName: string): string;
|
|
21
25
|
}
|
|
22
26
|
/**
|
|
23
27
|
* `ImportRewriter` that does no rewriting.
|
|
@@ -25,6 +29,7 @@ export interface ImportRewriter {
|
|
|
25
29
|
export declare class NoopImportRewriter implements ImportRewriter {
|
|
26
30
|
rewriteSymbol(symbol: string, specifier: string): string;
|
|
27
31
|
rewriteSpecifier(specifier: string, inContextOfFile: string): string;
|
|
32
|
+
rewriteNamespaceImportIdentifier(specifier: string): string;
|
|
28
33
|
}
|
|
29
34
|
/**
|
|
30
35
|
* `ImportRewriter` that rewrites imports from '@angular/core' to be imported from the r3_symbols.ts
|
|
@@ -35,5 +40,6 @@ export declare class R3SymbolsImportRewriter implements ImportRewriter {
|
|
|
35
40
|
constructor(r3SymbolsPath: string);
|
|
36
41
|
rewriteSymbol(symbol: string, specifier: string): string;
|
|
37
42
|
rewriteSpecifier(specifier: string, inContextOfFile: string): string;
|
|
43
|
+
rewriteNamespaceImportIdentifier(specifier: string): string;
|
|
38
44
|
}
|
|
39
45
|
export declare function validateAndRewriteCoreSymbol(name: string): string;
|
|
@@ -20,6 +20,11 @@ export interface NgModuleMeta {
|
|
|
20
20
|
imports: Reference<ClassDeclaration>[];
|
|
21
21
|
exports: Reference<ClassDeclaration>[];
|
|
22
22
|
schemas: SchemaMetadata[];
|
|
23
|
+
/**
|
|
24
|
+
* Whether the module had some issue being analyzed.
|
|
25
|
+
* This means it likely does not have complete and reliable metadata.
|
|
26
|
+
*/
|
|
27
|
+
isPoisoned: boolean;
|
|
23
28
|
/**
|
|
24
29
|
* The raw `ts.Expression` which gave rise to `declarations`, if one exists.
|
|
25
30
|
*
|
|
@@ -10,8 +10,11 @@ import { OwningModule, Reference } from '../../imports';
|
|
|
10
10
|
import { ClassDeclaration, ReflectionHost } from '../../reflection';
|
|
11
11
|
import { DirectiveMeta, DirectiveTypeCheckMeta, HostDirectiveMeta, HostDirectiveMetaForGlobalMode, InputMapping, MetadataReader, NgModuleMeta, PipeMeta } from './api';
|
|
12
12
|
import { ClassPropertyMapping } from './property_mapping';
|
|
13
|
-
export declare function extractReferencesFromType(checker: ts.TypeChecker, def: ts.TypeNode, bestGuessOwningModule: OwningModule | null):
|
|
14
|
-
|
|
13
|
+
export declare function extractReferencesFromType(checker: ts.TypeChecker, def: ts.TypeNode, bestGuessOwningModule: OwningModule | null): {
|
|
14
|
+
result: Reference<ClassDeclaration>[];
|
|
15
|
+
isIncomplete: boolean;
|
|
16
|
+
};
|
|
17
|
+
export declare function extraReferenceFromTypeQuery(checker: ts.TypeChecker, typeNode: ts.TypeQueryNode, origin: ts.TypeNode, bestGuessOwningModule: OwningModule | null): Reference<ClassDeclaration> | null;
|
|
15
18
|
export declare function readBooleanType(type: ts.TypeNode): boolean | null;
|
|
16
19
|
export declare function readStringType(type: ts.TypeNode): string | null;
|
|
17
20
|
export declare function readMapType<T>(type: ts.TypeNode, valueTransform: (type: ts.TypeNode) => T | null): {
|
|
@@ -60,6 +60,12 @@ export declare class TypeScriptReflectionHost implements ReflectionHost {
|
|
|
60
60
|
}
|
|
61
61
|
export declare function reflectNameOfDeclaration(decl: ts.Declaration): string | null;
|
|
62
62
|
export declare function reflectIdentifierOfDeclaration(decl: ts.Declaration): ts.Identifier | null;
|
|
63
|
+
export declare class TypeEntityToDeclarationError extends Error {
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* @throws {TypeEntityToDeclarationError} if the type cannot be converted
|
|
67
|
+
* to a declaration.
|
|
68
|
+
*/
|
|
63
69
|
export declare function reflectTypeEntityToDeclaration(type: ts.EntityName, checker: ts.TypeChecker): {
|
|
64
70
|
node: ts.Declaration;
|
|
65
71
|
from: string | null;
|
|
@@ -165,6 +165,10 @@ export interface DecoratorHandler<D, A, S extends SemanticSymbol | null, R> {
|
|
|
165
165
|
* `compileFull` is.
|
|
166
166
|
*/
|
|
167
167
|
compilePartial?(node: ClassDeclaration, analysis: Readonly<A>, resolution: Readonly<R>): CompileResult | CompileResult[];
|
|
168
|
+
/**
|
|
169
|
+
* Generates the function that will update a class' metadata at runtime during HMR.
|
|
170
|
+
*/
|
|
171
|
+
compileHmrUpdateDeclaration?(node: ClassDeclaration, analysis: Readonly<A>, resolution: Readonly<R>): ts.FunctionDeclaration | null;
|
|
168
172
|
/**
|
|
169
173
|
* Generates code based on each individual source file without using its
|
|
170
174
|
* dependencies (suitable for local dev edit/refresh workflow)
|
|
@@ -114,6 +114,7 @@ export declare class TraitCompiler implements ProgramTypeCheckAdapter {
|
|
|
114
114
|
xi18n(bundle: Xi18nContext): void;
|
|
115
115
|
updateResources(clazz: DeclarationNode): void;
|
|
116
116
|
compile(clazz: DeclarationNode, constantPool: ConstantPool): CompileResult[] | null;
|
|
117
|
+
compileHmrUpdateCallback(clazz: DeclarationNode): ts.FunctionDeclaration | null;
|
|
117
118
|
decoratorsFor(node: ts.Declaration): ts.Decorator[];
|
|
118
119
|
get diagnostics(): ReadonlyArray<ts.Diagnostic>;
|
|
119
120
|
get exportStatements(): Map<string, Map<string, [string, string]>>;
|
|
@@ -19,7 +19,7 @@ export interface AstFactory<TStatement, TExpression> {
|
|
|
19
19
|
* @param statement the statement where the comments are to be attached.
|
|
20
20
|
* @param leadingComments the comments to attach.
|
|
21
21
|
*/
|
|
22
|
-
attachComments(statement: TStatement, leadingComments: LeadingComment[]): void;
|
|
22
|
+
attachComments(statement: TStatement | TExpression, leadingComments: LeadingComment[]): void;
|
|
23
23
|
/**
|
|
24
24
|
* Create a literal array expression (e.g. `[expr1, expr2]`).
|
|
25
25
|
*
|
|
@@ -107,7 +107,7 @@ export interface AstFactory<TStatement, TExpression> {
|
|
|
107
107
|
*
|
|
108
108
|
* @param url the URL that should by used in the dynamic import
|
|
109
109
|
*/
|
|
110
|
-
createDynamicImport(url: string): TExpression;
|
|
110
|
+
createDynamicImport(url: string | TExpression): TExpression;
|
|
111
111
|
/**
|
|
112
112
|
* Create an identifier.
|
|
113
113
|
*
|
|
@@ -23,7 +23,7 @@ export declare class TypeScriptAstFactory implements AstFactory<ts.Statement, ts
|
|
|
23
23
|
createConditional(condition: ts.Expression, whenTrue: ts.Expression, whenFalse: ts.Expression): ts.Expression;
|
|
24
24
|
createElementAccess: (expression: ts.Expression, index: number | ts.Expression) => ts.ElementAccessExpression;
|
|
25
25
|
createExpressionStatement: (expression: ts.Expression) => ts.ExpressionStatement;
|
|
26
|
-
createDynamicImport(url: string): ts.CallExpression;
|
|
26
|
+
createDynamicImport(url: string | ts.Expression): ts.CallExpression;
|
|
27
27
|
createFunctionDeclaration(functionName: string, parameters: string[], body: ts.Statement): ts.Statement;
|
|
28
28
|
createFunctionExpression(functionName: string | null, parameters: string[], body: ts.Statement): ts.Expression;
|
|
29
29
|
createArrowFunctionExpression(parameters: string[], body: ts.Statement | ts.Expression): ts.Expression;
|
|
@@ -50,4 +50,4 @@ export declare function createTemplateTail(cooked: string, raw: string): ts.Temp
|
|
|
50
50
|
* @param statement The statement that will have comments attached.
|
|
51
51
|
* @param leadingComments The comments to attach to the statement.
|
|
52
52
|
*/
|
|
53
|
-
export declare function attachComments(statement: ts.Statement, leadingComments: LeadingComment[]): void;
|
|
53
|
+
export declare function attachComments(statement: ts.Statement | ts.Expression, leadingComments: LeadingComment[]): void;
|
|
@@ -1,2 +1,11 @@
|
|
|
1
|
+
import ts from 'typescript';
|
|
1
2
|
export declare function relativePathBetween(from: string, to: string): string | null;
|
|
2
3
|
export declare function normalizeSeparators(path: string): string;
|
|
4
|
+
/**
|
|
5
|
+
* Attempts to generate a project-relative path
|
|
6
|
+
* @param sourceFile
|
|
7
|
+
* @param rootDirs
|
|
8
|
+
* @param compilerHost
|
|
9
|
+
* @returns
|
|
10
|
+
*/
|
|
11
|
+
export declare function getProjectRelativePath(sourceFile: ts.SourceFile, rootDirs: readonly string[], compilerHost: Pick<ts.CompilerHost, 'getCanonicalFileName'>): string | null;
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
* found in the LICENSE file at https://angular.dev/license
|
|
7
7
|
*/
|
|
8
8
|
import ts from 'typescript';
|
|
9
|
-
import { ImportedSymbolsTracker } from '../../../imports';
|
|
10
|
-
import { TemplateTypeChecker, TypeCheckingConfig } from '../../../typecheck/api';
|
|
11
|
-
import { SourceFileValidatorRule } from './api';
|
|
9
|
+
import type { ImportedSymbolsTracker } from '../../../imports';
|
|
10
|
+
import type { TemplateTypeChecker, TypeCheckingConfig } from '../../../typecheck/api';
|
|
11
|
+
import type { SourceFileValidatorRule } from './api';
|
|
12
12
|
/**
|
|
13
13
|
* Rule that flags unused symbols inside of the `imports` array of a component.
|
|
14
14
|
*/
|
|
@@ -26,4 +26,6 @@ export declare class UnusedStandaloneImportsRule implements SourceFileValidatorR
|
|
|
26
26
|
* @param rawImports AST node that defines the `imports` array.
|
|
27
27
|
*/
|
|
28
28
|
private isPotentialSharedReference;
|
|
29
|
+
/** Gets the node on which to report the diagnostic. */
|
|
30
|
+
private getDiagnosticNode;
|
|
29
31
|
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 3,
|
|
3
|
-
"sources": ["../../../../../../packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.ts", "../../../../../../packages/compiler-cli/src/ngtsc/sourcemaps/src/segment_marker.ts", "../../../../../../packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file_loader.ts", "../../../../../../packages/compiler-cli/src/ngtsc/sourcemaps/src/content_origin.ts"],
|
|
4
|
-
"mappings": "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",
|
|
5
|
-
"names": ["mapHelpers", "ContentOrigin", "mapHelpers"]
|
|
6
|
-
}
|