@angular/compiler-cli 20.2.3 → 20.3.0-rc.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.
@@ -16,7 +16,7 @@ import {
16
16
  tryParseSignalInputMapping,
17
17
  tryParseSignalModelMapping,
18
18
  tryParseSignalQueryFromInitializer
19
- } from "./chunk-SDVA75LV.js";
19
+ } from "./chunk-PVSLT73R.js";
20
20
 
21
21
  // packages/compiler-cli/src/ngtsc/transform/jit/src/downlevel_decorators_transform.js
22
22
  import ts from "typescript";
@@ -455,7 +455,7 @@ import { compileDirectiveFromMetadata, makeBindingParser, ParseLocation, ParseSo
455
455
  // packages/compiler-cli/linker/src/file_linker/partial_linkers/util.js
456
456
  import { createMayBeForwardRefExpression, outputAst as o2 } from "@angular/compiler";
457
457
  import semver from "semver";
458
- var PLACEHOLDER_VERSION = "20.2.3";
458
+ var PLACEHOLDER_VERSION = "20.3.0-rc.0";
459
459
  function wrapReference(wrapped) {
460
460
  return { value: wrapped, type: wrapped };
461
461
  }
@@ -4,7 +4,7 @@
4
4
 
5
5
  import {
6
6
  angularJitApplicationTransform
7
- } from "./chunk-JY5R6NDM.js";
7
+ } from "./chunk-6DF2AWLX.js";
8
8
  import {
9
9
  AbsoluteModuleStrategy,
10
10
  ActivePerfRecorder,
@@ -92,7 +92,7 @@ import {
92
92
  toUnredirectedSourceFile,
93
93
  tryParseInitializerApi,
94
94
  untagAllTsFiles
95
- } from "./chunk-SDVA75LV.js";
95
+ } from "./chunk-PVSLT73R.js";
96
96
  import {
97
97
  LogicalFileSystem,
98
98
  absoluteFrom,
@@ -2804,7 +2804,7 @@ var StandaloneComponentScopeReader = class {
2804
2804
  };
2805
2805
 
2806
2806
  // packages/compiler-cli/src/ngtsc/typecheck/extended/checks/interpolated_signal_not_invoked/index.js
2807
- import { ASTWithSource as ASTWithSource2, BindingType, Interpolation, PrefixNot, PropertyRead as PropertyRead2, TmplAstBoundAttribute } from "@angular/compiler";
2807
+ import { ASTWithSource as ASTWithSource2, BindingType, Interpolation, PrefixNot, PropertyRead as PropertyRead2, TmplAstBoundAttribute, TmplAstIfBlock, TmplAstSwitchBlock } from "@angular/compiler";
2808
2808
 
2809
2809
  // packages/compiler-cli/src/ngtsc/typecheck/src/symbol_util.js
2810
2810
  import ts18 from "typescript";
@@ -2912,6 +2912,16 @@ var InterpolatedSignalCheck = class extends TemplateCheckWithVisitor {
2912
2912
  ) {
2913
2913
  return buildDiagnosticForSignal(ctx, nodeAst, component);
2914
2914
  }
2915
+ } else if (node instanceof TmplAstIfBlock) {
2916
+ return node.branches.map((branch) => branch.expression).filter((expr) => expr instanceof ASTWithSource2).map((expr) => {
2917
+ const ast = expr.ast;
2918
+ return ast instanceof PrefixNot ? ast.expression : ast;
2919
+ }).filter((ast) => ast instanceof PropertyRead2).flatMap((item) => buildDiagnosticForSignal(ctx, item, component));
2920
+ } else if (node instanceof TmplAstSwitchBlock && node.expression instanceof ASTWithSource2) {
2921
+ const expression = node.expression.ast instanceof PrefixNot ? node.expression.ast.expression : node.expression.ast;
2922
+ if (expression instanceof PropertyRead2) {
2923
+ return buildDiagnosticForSignal(ctx, expression, component);
2924
+ }
2915
2925
  }
2916
2926
  return [];
2917
2927
  }
@@ -12,7 +12,7 @@ import {
12
12
  formatDiagnostics,
13
13
  performCompilation,
14
14
  readConfiguration
15
- } from "./chunk-6E57N6DK.js";
15
+ } from "./chunk-ES5JHT4S.js";
16
16
 
17
17
  // packages/compiler-cli/src/main.js
18
18
  import ts2 from "typescript";
@@ -10978,7 +10978,7 @@ var CompletionEngine = class {
10978
10978
  // packages/compiler-cli/src/ngtsc/typecheck/src/context.js
10979
10979
  import { ParseSourceFile as ParseSourceFile2 } from "@angular/compiler";
10980
10980
 
10981
- // node_modules/.aspect_rules_js/magic-string@0.30.17/node_modules/magic-string/dist/magic-string.es.mjs
10981
+ // node_modules/.aspect_rules_js/magic-string@0.30.18/node_modules/magic-string/dist/magic-string.es.mjs
10982
10982
  import { encode } from "@jridgewell/sourcemap-codec";
10983
10983
  var BitSet = class _BitSet {
10984
10984
  constructor(arg) {
@@ -11826,11 +11826,15 @@ var MagicString = class _MagicString {
11826
11826
  if (this.byStart[index] || this.byEnd[index])
11827
11827
  return;
11828
11828
  let chunk = this.lastSearchedChunk;
11829
+ let previousChunk = chunk;
11829
11830
  const searchForward = index > chunk.end;
11830
11831
  while (chunk) {
11831
11832
  if (chunk.contains(index))
11832
11833
  return this._splitChunk(chunk, index);
11833
11834
  chunk = searchForward ? this.byStart[chunk.end] : this.byEnd[chunk.start];
11835
+ if (chunk === previousChunk)
11836
+ return;
11837
+ previousChunk = chunk;
11834
11838
  }
11835
11839
  }
11836
11840
  _splitChunk(chunk, index) {
package/bundles/index.js CHANGED
@@ -28,7 +28,7 @@ import {
28
28
  isTsDiagnostic,
29
29
  performCompilation,
30
30
  readConfiguration
31
- } from "./chunk-6E57N6DK.js";
31
+ } from "./chunk-ES5JHT4S.js";
32
32
  import {
33
33
  ConsoleLogger,
34
34
  LogLevel
@@ -37,7 +37,7 @@ import {
37
37
  angularJitApplicationTransform,
38
38
  getDownlevelDecoratorsTransform,
39
39
  getInitializerApiJitTransform
40
- } from "./chunk-JY5R6NDM.js";
40
+ } from "./chunk-6DF2AWLX.js";
41
41
  import {
42
42
  ActivePerfRecorder,
43
43
  ErrorCode,
@@ -46,7 +46,7 @@ import {
46
46
  TsCreateProgramDriver,
47
47
  isLocalCompilationDiagnostics,
48
48
  ngErrorCode
49
- } from "./chunk-SDVA75LV.js";
49
+ } from "./chunk-PVSLT73R.js";
50
50
  import "./chunk-I2BHWRAU.js";
51
51
  import {
52
52
  InvalidFileSystem,
@@ -77,7 +77,7 @@ import "./chunk-G7GFT6BU.js";
77
77
 
78
78
  // packages/compiler-cli/src/version.js
79
79
  import { Version } from "@angular/compiler";
80
- var VERSION = new Version("20.2.3");
80
+ var VERSION = new Version("20.3.0-rc.0");
81
81
 
82
82
  // packages/compiler-cli/private/tooling.js
83
83
  var GLOBAL_DEFS_FOR_TERSER = {
@@ -13,7 +13,7 @@ import {
13
13
  TypeScriptReflectionHost,
14
14
  createForwardRefResolver,
15
15
  reflectObjectLiteral
16
- } from "../chunk-SDVA75LV.js";
16
+ } from "../chunk-PVSLT73R.js";
17
17
  import "../chunk-I2BHWRAU.js";
18
18
  import "../chunk-GWZQLAGK.js";
19
19
  import "../chunk-XYYEESKY.js";
@@ -4,8 +4,8 @@
4
4
 
5
5
  import {
6
6
  angularJitApplicationTransform
7
- } from "../chunk-JY5R6NDM.js";
8
- import "../chunk-SDVA75LV.js";
7
+ } from "../chunk-6DF2AWLX.js";
8
+ import "../chunk-PVSLT73R.js";
9
9
  import "../chunk-I2BHWRAU.js";
10
10
  import "../chunk-GWZQLAGK.js";
11
11
  import "../chunk-XYYEESKY.js";
@@ -6,12 +6,12 @@
6
6
  import {
7
7
  main,
8
8
  readCommandLineAndConfiguration
9
- } from "../../chunk-BBUN6IOV.js";
9
+ } from "../../chunk-OLESUCWZ.js";
10
10
  import {
11
11
  EmitFlags
12
- } from "../../chunk-6E57N6DK.js";
13
- import "../../chunk-JY5R6NDM.js";
14
- import "../../chunk-SDVA75LV.js";
12
+ } from "../../chunk-ES5JHT4S.js";
13
+ import "../../chunk-6DF2AWLX.js";
14
+ import "../../chunk-PVSLT73R.js";
15
15
  import "../../chunk-I2BHWRAU.js";
16
16
  import {
17
17
  setFileSystem
@@ -5,10 +5,10 @@
5
5
 
6
6
  import {
7
7
  main
8
- } from "../../chunk-BBUN6IOV.js";
9
- import "../../chunk-6E57N6DK.js";
10
- import "../../chunk-JY5R6NDM.js";
11
- import "../../chunk-SDVA75LV.js";
8
+ } from "../../chunk-OLESUCWZ.js";
9
+ import "../../chunk-ES5JHT4S.js";
10
+ import "../../chunk-6DF2AWLX.js";
11
+ import "../../chunk-PVSLT73R.js";
12
12
  import "../../chunk-I2BHWRAU.js";
13
13
  import {
14
14
  setFileSystem
@@ -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 = "20.2.3";
10
+ export declare const PLACEHOLDER_VERSION = "20.3.0-rc.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": "20.2.3",
3
+ "version": "20.3.0-rc.0",
4
4
  "description": "Angular - the compiler CLI for Node.js",
5
5
  "typings": "index.d.ts",
6
6
  "bin": {
@@ -48,7 +48,7 @@
48
48
  "yargs": "^18.0.0"
49
49
  },
50
50
  "peerDependencies": {
51
- "@angular/compiler": "20.2.3",
51
+ "@angular/compiler": "20.3.0-rc.0",
52
52
  "typescript": ">=5.8 <6.0"
53
53
  },
54
54
  "peerDependenciesMeta": {