@angular/compiler-cli 17.0.2 → 17.1.0-next.0
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-HKIDKKUJ.js → chunk-2UJEML3U.js} +2764 -2780
- package/bundles/chunk-2UJEML3U.js.map +6 -0
- package/bundles/{chunk-EKTJ7622.js → chunk-2WQIUGOU.js} +1 -1
- package/bundles/chunk-2WQIUGOU.js.map +6 -0
- package/bundles/{chunk-BV3ZUD7T.js → chunk-64JBPJBS.js} +1 -1
- package/bundles/{chunk-BV3ZUD7T.js.map → chunk-64JBPJBS.js.map} +1 -1
- package/bundles/{chunk-PCMLSPQF.js → chunk-DUY2FPLZ.js} +1 -1
- package/bundles/chunk-DUY2FPLZ.js.map +6 -0
- package/bundles/{chunk-MHTLEXGT.js → chunk-EMC3QXAT.js} +2 -2
- package/bundles/chunk-EMC3QXAT.js.map +6 -0
- package/bundles/{chunk-EKZWOVDR.js → chunk-MTZGVQDN.js} +36 -25
- package/bundles/chunk-MTZGVQDN.js.map +6 -0
- package/bundles/{chunk-WJ2RDNX4.js → chunk-U6JZJXY2.js} +2 -2
- package/bundles/chunk-U6JZJXY2.js.map +6 -0
- package/bundles/{chunk-Z4QM3XT4.js → chunk-UTWZHLA4.js} +4 -4
- package/bundles/chunk-UTWZHLA4.js.map +6 -0
- package/bundles/{chunk-OTTOC3WQ.js → chunk-VHIKXGRX.js} +23 -15
- package/bundles/chunk-VHIKXGRX.js.map +6 -0
- package/bundles/{chunk-ELZXPNCU.js → chunk-XCEXKEDO.js} +139 -120
- package/bundles/chunk-XCEXKEDO.js.map +6 -0
- package/bundles/index.js +8 -8
- package/bundles/index.js.map +1 -1
- package/bundles/linker/babel/index.js +5 -5
- package/bundles/linker/babel/index.js.map +1 -1
- package/bundles/linker/index.js +5 -5
- package/bundles/ngcc/index.js.map +1 -1
- package/bundles/private/bazel.js +1 -1
- package/bundles/private/localize.js +2 -2
- package/bundles/private/migrations.js +5 -5
- package/bundles/private/tooling.js +3 -3
- package/bundles/src/bin/ng_xi18n.js +7 -7
- package/bundles/src/bin/ngc.js +7 -7
- package/bundles_metadata.json +1 -1
- package/linker/babel/src/ast/babel_ast_factory.d.ts +2 -0
- package/linker/babel/src/ast/babel_ast_host.d.ts +2 -0
- package/linker/babel/src/babel_declaration_scope.d.ts +3 -0
- package/linker/babel/src/babel_plugin.d.ts +2 -0
- package/linker/babel/src/es2015_linker_plugin.d.ts +2 -0
- package/linker/src/file_linker/partial_linkers/util.d.ts +1 -1
- package/package.json +3 -3
- package/src/bin/ng_xi18n.d.ts +1 -0
- package/src/bin/ngc.d.ts +1 -0
- package/src/ngtsc/annotations/common/src/di.d.ts +2 -3
- package/src/ngtsc/core/src/host.d.ts +1 -0
- package/src/ngtsc/indexer/src/api.d.ts +1 -1
- package/src/ngtsc/program_driver/src/ts_create_program_driver.d.ts +1 -0
- package/src/ngtsc/reflection/src/host.d.ts +1 -1
- package/src/ngtsc/reflection/src/type_to_value.d.ts +1 -1
- package/src/ngtsc/reflection/src/typescript.d.ts +2 -1
- package/src/ngtsc/translator/src/ts_util.d.ts +12 -0
- package/src/ngtsc/typecheck/src/ts_util.d.ts +4 -0
- package/bundles/chunk-EKTJ7622.js.map +0 -6
- package/bundles/chunk-EKZWOVDR.js.map +0 -6
- package/bundles/chunk-ELZXPNCU.js.map +0 -6
- package/bundles/chunk-HKIDKKUJ.js.map +0 -6
- package/bundles/chunk-MHTLEXGT.js.map +0 -6
- package/bundles/chunk-OTTOC3WQ.js.map +0 -6
- package/bundles/chunk-PCMLSPQF.js.map +0 -6
- package/bundles/chunk-WJ2RDNX4.js.map +0 -6
- package/bundles/chunk-Z4QM3XT4.js.map +0 -6
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
+
/// <reference types="@types/babel__core" />
|
|
9
|
+
/// <reference types="@angular/compiler-cli/private/babel" />
|
|
8
10
|
import { types as t } from '@babel/core';
|
|
9
11
|
import { AstHost, Range } from '../../../../linker';
|
|
10
12
|
/**
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6
6
|
* found in the LICENSE file at https://angular.io/license
|
|
7
7
|
*/
|
|
8
|
+
/// <reference types="@types/babel__core" />
|
|
9
|
+
/// <reference types="@angular/compiler-cli/private/babel" />
|
|
8
10
|
import { PluginObj } from '@babel/core';
|
|
9
11
|
import { LinkerPluginOptions } from './linker_plugin_options';
|
|
10
12
|
/**
|
|
@@ -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 = "17.0.
|
|
10
|
+
export declare const PLACEHOLDER_VERSION = "17.1.0-next.0";
|
|
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.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler-cli",
|
|
3
|
-
"version": "17.0.
|
|
3
|
+
"version": "17.1.0-next.0",
|
|
4
4
|
"description": "Angular - the compiler CLI for Node.js",
|
|
5
5
|
"typings": "index.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"yargs": "^17.2.1"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@angular/compiler": "17.0.
|
|
57
|
-
"typescript": ">=5.2 <5.
|
|
56
|
+
"@angular/compiler": "17.1.0-next.0",
|
|
57
|
+
"typescript": ">=5.2 <5.4"
|
|
58
58
|
},
|
|
59
59
|
"repository": {
|
|
60
60
|
"type": "git",
|
package/src/bin/ng_xi18n.d.ts
CHANGED
package/src/bin/ngc.d.ts
CHANGED
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { R3DependencyMetadata } from '@angular/compiler';
|
|
9
9
|
import { ClassDeclaration, CtorParameter, ReflectionHost, UnavailableValue } from '../../../reflection';
|
|
10
|
-
import { CompilationMode } from '../../../transform';
|
|
11
10
|
export type ConstructorDeps = {
|
|
12
11
|
deps: R3DependencyMetadata[];
|
|
13
12
|
} | {
|
|
@@ -19,7 +18,7 @@ export interface ConstructorDepError {
|
|
|
19
18
|
param: CtorParameter;
|
|
20
19
|
reason: UnavailableValue;
|
|
21
20
|
}
|
|
22
|
-
export declare function getConstructorDependencies(clazz: ClassDeclaration, reflector: ReflectionHost, isCore: boolean
|
|
21
|
+
export declare function getConstructorDependencies(clazz: ClassDeclaration, reflector: ReflectionHost, isCore: boolean): ConstructorDeps | null;
|
|
23
22
|
/**
|
|
24
23
|
* Convert `ConstructorDeps` into the `R3DependencyMetadata` array for those deps if they're valid,
|
|
25
24
|
* or into an `'invalid'` signal if they're not.
|
|
@@ -27,7 +26,7 @@ export declare function getConstructorDependencies(clazz: ClassDeclaration, refl
|
|
|
27
26
|
* This is a companion function to `validateConstructorDependencies` which accepts invalid deps.
|
|
28
27
|
*/
|
|
29
28
|
export declare function unwrapConstructorDependencies(deps: ConstructorDeps | null): R3DependencyMetadata[] | 'invalid' | null;
|
|
30
|
-
export declare function getValidConstructorDependencies(clazz: ClassDeclaration, reflector: ReflectionHost, isCore: boolean
|
|
29
|
+
export declare function getValidConstructorDependencies(clazz: ClassDeclaration, reflector: ReflectionHost, isCore: boolean): R3DependencyMetadata[] | null;
|
|
31
30
|
/**
|
|
32
31
|
* Validate that `ConstructorDeps` does not have any invalid dependencies and convert them into the
|
|
33
32
|
* `R3DependencyMetadata` array if so, or raise a diagnostic if some deps are invalid.
|
|
@@ -48,6 +48,7 @@ export declare class DelegatingCompilerHost implements Omit<RequiredDelegations<
|
|
|
48
48
|
hasInvalidatedResolutions: ((filePath: ts.Path) => boolean) | undefined;
|
|
49
49
|
resolveModuleNameLiterals: ((moduleLiterals: readonly ts.StringLiteralLike[], containingFile: string, redirectedReference: ts.ResolvedProjectReference | undefined, options: ts.CompilerOptions, containingSourceFile: ts.SourceFile, reusedNames: readonly ts.StringLiteralLike[] | undefined) => readonly ts.ResolvedModuleWithFailedLookupLocations[]) | undefined;
|
|
50
50
|
resolveTypeReferenceDirectiveReferences: (<T extends string | ts.FileReference>(typeDirectiveReferences: readonly T[], containingFile: string, redirectedReference: ts.ResolvedProjectReference | undefined, options: ts.CompilerOptions, containingSourceFile: ts.SourceFile | undefined, reusedNames: readonly T[] | undefined) => readonly ts.ResolvedTypeReferenceDirectiveWithFailedLookupLocations[]) | undefined;
|
|
51
|
+
jsDocParsingMode: ts.JSDocParsingMode | undefined;
|
|
51
52
|
constructor(delegate: ExtendedTsCompilerHost);
|
|
52
53
|
private delegateMethod;
|
|
53
54
|
}
|
|
@@ -12,7 +12,7 @@ import { ClassDeclaration, DeclarationNode } from '../../reflection';
|
|
|
12
12
|
*/
|
|
13
13
|
export declare enum IdentifierKind {
|
|
14
14
|
Property = 0,
|
|
15
|
-
Method = 1
|
|
15
|
+
Method = 1,// TODO: No longer being used. To be removed together with `MethodIdentifier`.
|
|
16
16
|
Element = 2,
|
|
17
17
|
Template = 3,
|
|
18
18
|
Attribute = 4,
|
|
@@ -41,6 +41,7 @@ export declare class DelegatingCompilerHost implements Omit<RequiredDelegations<
|
|
|
41
41
|
hasInvalidatedResolutions: ((filePath: ts.Path) => boolean) | undefined;
|
|
42
42
|
resolveModuleNameLiterals: ((moduleLiterals: readonly ts.StringLiteralLike[], containingFile: string, redirectedReference: ts.ResolvedProjectReference | undefined, options: ts.CompilerOptions, containingSourceFile: ts.SourceFile, reusedNames: readonly ts.StringLiteralLike[] | undefined) => readonly ts.ResolvedModuleWithFailedLookupLocations[]) | undefined;
|
|
43
43
|
resolveTypeReferenceDirectiveReferences: (<T extends string | ts.FileReference>(typeDirectiveReferences: readonly T[], containingFile: string, redirectedReference: ts.ResolvedProjectReference | undefined, options: ts.CompilerOptions, containingSourceFile: ts.SourceFile | undefined, reusedNames: readonly T[] | undefined) => readonly ts.ResolvedTypeReferenceDirectiveWithFailedLookupLocations[]) | undefined;
|
|
44
|
+
jsDocParsingMode: ts.JSDocParsingMode | undefined;
|
|
44
45
|
constructor(delegate: ts.CompilerHost);
|
|
45
46
|
private delegateMethod;
|
|
46
47
|
}
|
|
@@ -209,7 +209,7 @@ export interface ImportedTypeValueReference {
|
|
|
209
209
|
* When `null` or empty, the `importedName` itself is the symbol being referenced.
|
|
210
210
|
*/
|
|
211
211
|
nestedPath: string[] | null;
|
|
212
|
-
valueDeclaration: DeclarationNode;
|
|
212
|
+
valueDeclaration: DeclarationNode | null;
|
|
213
213
|
}
|
|
214
214
|
/**
|
|
215
215
|
* A representation for a type value reference that is used when no value is available. This can
|
|
@@ -14,7 +14,7 @@ import { TypeValueReference } from './host';
|
|
|
14
14
|
* This can return `null` if the `typeNode` is `null`, if it does not refer to a symbol with a value
|
|
15
15
|
* declaration, or if it is not possible to statically understand.
|
|
16
16
|
*/
|
|
17
|
-
export declare function typeToValue(typeNode: ts.TypeNode | null, checker: ts.TypeChecker): TypeValueReference;
|
|
17
|
+
export declare function typeToValue(typeNode: ts.TypeNode | null, checker: ts.TypeChecker, isLocalCompilation: boolean): TypeValueReference;
|
|
18
18
|
/**
|
|
19
19
|
* Attempt to extract a `ts.Expression` that's equivalent to a `ts.TypeNode`, as the two have
|
|
20
20
|
* different AST shapes but can reference the same symbols.
|
|
@@ -12,7 +12,8 @@ import { ClassDeclaration, ClassMember, CtorParameter, Declaration, DeclarationN
|
|
|
12
12
|
*/
|
|
13
13
|
export declare class TypeScriptReflectionHost implements ReflectionHost {
|
|
14
14
|
protected checker: ts.TypeChecker;
|
|
15
|
-
|
|
15
|
+
private readonly isLocalCompilation;
|
|
16
|
+
constructor(checker: ts.TypeChecker, isLocalCompilation?: boolean);
|
|
16
17
|
getDecoratorsOfDeclaration(declaration: DeclarationNode): Decorator[] | null;
|
|
17
18
|
getMembersOfClass(clazz: ClassDeclaration): ClassMember[];
|
|
18
19
|
getConstructorParameters(clazz: ClassDeclaration): CtorParameter[] | null;
|
|
@@ -0,0 +1,12 @@
|
|
|
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.io/license
|
|
7
|
+
*/
|
|
8
|
+
import ts from 'typescript';
|
|
9
|
+
/**
|
|
10
|
+
* Creates a TypeScript node representing a numeric value.
|
|
11
|
+
*/
|
|
12
|
+
export declare function tsNumericExpression(value: number): ts.NumericLiteral | ts.PrefixUnaryExpression;
|
|
@@ -44,3 +44,7 @@ export declare function tsCreateVariable(id: ts.Identifier, initializer: ts.Expr
|
|
|
44
44
|
*/
|
|
45
45
|
export declare function tsCallMethod(receiver: ts.Expression, methodName: string, args?: ts.Expression[]): ts.CallExpression;
|
|
46
46
|
export declare function isAccessExpression(node: ts.Node): node is ts.ElementAccessExpression | ts.PropertyAccessExpression;
|
|
47
|
+
/**
|
|
48
|
+
* Creates a TypeScript node representing a numeric value.
|
|
49
|
+
*/
|
|
50
|
+
export declare function tsNumericExpression(value: number): ts.NumericLiteral | ts.PrefixUnaryExpression;
|
|
@@ -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
|
-
}
|