Skip to content

Commit 7666991

Browse files
committed
6d3849f refactor(core): updates to golden files (#60227)
1 parent c1cef30 commit 7666991

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Mon Mar 24 16:14:53 UTC 2025
2-
7499b74d7d2d6db132d1b19a73e13cf6e306e41e
1+
Tue Mar 25 18:04:36 UTC 2025
2+
6d3849ffc85cc52b0eba3836b24f10895621acbe

fesm2022/compiler.mjs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.3+sha-7499b74
2+
* @license Angular v20.0.0-next.3+sha-6d3849f
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -33055,7 +33055,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3305533055
function compileDeclareClassMetadata(metadata) {
3305633056
const definitionMap = new DefinitionMap();
3305733057
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
33058-
definitionMap.set('version', literal('20.0.0-next.3+sha-7499b74'));
33058+
definitionMap.set('version', literal('20.0.0-next.3+sha-6d3849f'));
3305933059
definitionMap.set('ngImport', importExpr(Identifiers.core));
3306033060
definitionMap.set('type', metadata.type);
3306133061
definitionMap.set('decorators', metadata.decorators);
@@ -33073,7 +33073,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3307333073
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3307433074
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3307533075
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
33076-
definitionMap.set('version', literal('20.0.0-next.3+sha-7499b74'));
33076+
definitionMap.set('version', literal('20.0.0-next.3+sha-6d3849f'));
3307733077
definitionMap.set('ngImport', importExpr(Identifiers.core));
3307833078
definitionMap.set('type', metadata.type);
3307933079
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -33168,7 +33168,7 @@ function createDirectiveDefinitionMap(meta) {
3316833168
const definitionMap = new DefinitionMap();
3316933169
const minVersion = getMinimumVersionForPartialOutput(meta);
3317033170
definitionMap.set('minVersion', literal(minVersion));
33171-
definitionMap.set('version', literal('20.0.0-next.3+sha-7499b74'));
33171+
definitionMap.set('version', literal('20.0.0-next.3+sha-6d3849f'));
3317233172
// e.g. `type: MyDirective`
3317333173
definitionMap.set('type', meta.type.value);
3317433174
if (meta.isStandalone !== undefined) {
@@ -33584,7 +33584,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3358433584
function compileDeclareFactoryFunction(meta) {
3358533585
const definitionMap = new DefinitionMap();
3358633586
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33587-
definitionMap.set('version', literal('20.0.0-next.3+sha-7499b74'));
33587+
definitionMap.set('version', literal('20.0.0-next.3+sha-6d3849f'));
3358833588
definitionMap.set('ngImport', importExpr(Identifiers.core));
3358933589
definitionMap.set('type', meta.type.value);
3359033590
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33619,7 +33619,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3361933619
function createInjectableDefinitionMap(meta) {
3362033620
const definitionMap = new DefinitionMap();
3362133621
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33622-
definitionMap.set('version', literal('20.0.0-next.3+sha-7499b74'));
33622+
definitionMap.set('version', literal('20.0.0-next.3+sha-6d3849f'));
3362333623
definitionMap.set('ngImport', importExpr(Identifiers.core));
3362433624
definitionMap.set('type', meta.type.value);
3362533625
// Only generate providedIn property if it has a non-null value
@@ -33670,7 +33670,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3367033670
function createInjectorDefinitionMap(meta) {
3367133671
const definitionMap = new DefinitionMap();
3367233672
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33673-
definitionMap.set('version', literal('20.0.0-next.3+sha-7499b74'));
33673+
definitionMap.set('version', literal('20.0.0-next.3+sha-6d3849f'));
3367433674
definitionMap.set('ngImport', importExpr(Identifiers.core));
3367533675
definitionMap.set('type', meta.type.value);
3367633676
definitionMap.set('providers', meta.providers);
@@ -33703,7 +33703,7 @@ function createNgModuleDefinitionMap(meta) {
3370333703
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3370433704
}
3370533705
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33706-
definitionMap.set('version', literal('20.0.0-next.3+sha-7499b74'));
33706+
definitionMap.set('version', literal('20.0.0-next.3+sha-6d3849f'));
3370733707
definitionMap.set('ngImport', importExpr(Identifiers.core));
3370833708
definitionMap.set('type', meta.type.value);
3370933709
// We only generate the keys in the metadata if the arrays contain values.
@@ -33754,7 +33754,7 @@ function compileDeclarePipeFromMetadata(meta) {
3375433754
function createPipeDefinitionMap(meta) {
3375533755
const definitionMap = new DefinitionMap();
3375633756
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33757-
definitionMap.set('version', literal('20.0.0-next.3+sha-7499b74'));
33757+
definitionMap.set('version', literal('20.0.0-next.3+sha-6d3849f'));
3375833758
definitionMap.set('ngImport', importExpr(Identifiers.core));
3375933759
// e.g. `type: MyPipe`
3376033760
definitionMap.set('type', meta.type.value);
@@ -33912,7 +33912,7 @@ function compileHmrUpdateCallback(definitions, constantStatements, meta) {
3391233912
* @description
3391333913
* Entry point for all public APIs of the compiler package.
3391433914
*/
33915-
const VERSION = new Version('20.0.0-next.3+sha-7499b74');
33915+
const VERSION = new Version('20.0.0-next.3+sha-6d3849f');
3391633916

3391733917
//////////////////////////////////////
3391833918
// THIS FILE HAS GLOBAL SIDE EFFECT //

fesm2022/compiler.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.3+sha-7499b74
2+
* @license Angular v20.0.0-next.3+sha-6d3849f
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/compiler",
3-
"version": "20.0.0-next.3+sha-7499b74",
3+
"version": "20.0.0-next.3+sha-6d3849f",
44
"description": "Angular - the compiler library",
55
"author": "angular",
66
"license": "MIT",

0 commit comments

Comments
 (0)