Skip to content

Commit 2f60566

Browse files
committed
76c4a77 refactor(core): move TNode manipulation logic to its own file (#59601)
1 parent 90abb3c commit 2f60566

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Tue Jan 21 18:04:06 UTC 2025
2-
431166d93fd3eb827f312ea51d091ebf15d9557c
1+
Tue Jan 21 18:54:35 UTC 2025
2+
76c4a77af7b6afb6df6af8f995def9b0b926e384

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 v19.2.0-next.0+sha-431166d
2+
* @license Angular v19.2.0-next.0+sha-76c4a77
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -30763,7 +30763,7 @@ function publishFacade(global) {
3076330763
* @description
3076430764
* Entry point for all public APIs of the compiler package.
3076530765
*/
30766-
const VERSION = new Version('19.2.0-next.0+sha-431166d');
30766+
const VERSION = new Version('19.2.0-next.0+sha-76c4a77');
3076730767

3076830768
class CompilerConfig {
3076930769
defaultEncapsulation;
@@ -32619,7 +32619,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3261932619
function compileDeclareClassMetadata(metadata) {
3262032620
const definitionMap = new DefinitionMap();
3262132621
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
32622-
definitionMap.set('version', literal('19.2.0-next.0+sha-431166d'));
32622+
definitionMap.set('version', literal('19.2.0-next.0+sha-76c4a77'));
3262332623
definitionMap.set('ngImport', importExpr(Identifiers.core));
3262432624
definitionMap.set('type', metadata.type);
3262532625
definitionMap.set('decorators', metadata.decorators);
@@ -32637,7 +32637,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3263732637
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3263832638
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3263932639
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
32640-
definitionMap.set('version', literal('19.2.0-next.0+sha-431166d'));
32640+
definitionMap.set('version', literal('19.2.0-next.0+sha-76c4a77'));
3264132641
definitionMap.set('ngImport', importExpr(Identifiers.core));
3264232642
definitionMap.set('type', metadata.type);
3264332643
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -32732,7 +32732,7 @@ function createDirectiveDefinitionMap(meta) {
3273232732
const definitionMap = new DefinitionMap();
3273332733
const minVersion = getMinimumVersionForPartialOutput(meta);
3273432734
definitionMap.set('minVersion', literal(minVersion));
32735-
definitionMap.set('version', literal('19.2.0-next.0+sha-431166d'));
32735+
definitionMap.set('version', literal('19.2.0-next.0+sha-76c4a77'));
3273632736
// e.g. `type: MyDirective`
3273732737
definitionMap.set('type', meta.type.value);
3273832738
if (meta.isStandalone !== undefined) {
@@ -33151,7 +33151,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3315133151
function compileDeclareFactoryFunction(meta) {
3315233152
const definitionMap = new DefinitionMap();
3315333153
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33154-
definitionMap.set('version', literal('19.2.0-next.0+sha-431166d'));
33154+
definitionMap.set('version', literal('19.2.0-next.0+sha-76c4a77'));
3315533155
definitionMap.set('ngImport', importExpr(Identifiers.core));
3315633156
definitionMap.set('type', meta.type.value);
3315733157
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33186,7 +33186,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3318633186
function createInjectableDefinitionMap(meta) {
3318733187
const definitionMap = new DefinitionMap();
3318833188
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33189-
definitionMap.set('version', literal('19.2.0-next.0+sha-431166d'));
33189+
definitionMap.set('version', literal('19.2.0-next.0+sha-76c4a77'));
3319033190
definitionMap.set('ngImport', importExpr(Identifiers.core));
3319133191
definitionMap.set('type', meta.type.value);
3319233192
// Only generate providedIn property if it has a non-null value
@@ -33237,7 +33237,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3323733237
function createInjectorDefinitionMap(meta) {
3323833238
const definitionMap = new DefinitionMap();
3323933239
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33240-
definitionMap.set('version', literal('19.2.0-next.0+sha-431166d'));
33240+
definitionMap.set('version', literal('19.2.0-next.0+sha-76c4a77'));
3324133241
definitionMap.set('ngImport', importExpr(Identifiers.core));
3324233242
definitionMap.set('type', meta.type.value);
3324333243
definitionMap.set('providers', meta.providers);
@@ -33270,7 +33270,7 @@ function createNgModuleDefinitionMap(meta) {
3327033270
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3327133271
}
3327233272
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33273-
definitionMap.set('version', literal('19.2.0-next.0+sha-431166d'));
33273+
definitionMap.set('version', literal('19.2.0-next.0+sha-76c4a77'));
3327433274
definitionMap.set('ngImport', importExpr(Identifiers.core));
3327533275
definitionMap.set('type', meta.type.value);
3327633276
// We only generate the keys in the metadata if the arrays contain values.
@@ -33321,7 +33321,7 @@ function compileDeclarePipeFromMetadata(meta) {
3332133321
function createPipeDefinitionMap(meta) {
3332233322
const definitionMap = new DefinitionMap();
3332333323
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33324-
definitionMap.set('version', literal('19.2.0-next.0+sha-431166d'));
33324+
definitionMap.set('version', literal('19.2.0-next.0+sha-76c4a77'));
3332533325
definitionMap.set('ngImport', importExpr(Identifiers.core));
3332633326
// e.g. `type: MyPipe`
3332733327
definitionMap.set('type', meta.type.value);

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 v19.2.0-next.0+sha-431166d
2+
* @license Angular v19.2.0-next.0+sha-76c4a77
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/compiler",
3-
"version": "19.2.0-next.0+sha-431166d",
3+
"version": "19.2.0-next.0+sha-76c4a77",
44
"description": "Angular - the compiler library",
55
"author": "angular",
66
"license": "MIT",
@@ -11,7 +11,7 @@
1111
"tslib": "^2.3.0"
1212
},
1313
"peerDependencies": {
14-
"@angular/core": "19.2.0-next.0+sha-431166d"
14+
"@angular/core": "19.2.0-next.0+sha-76c4a77"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)