Skip to content

Commit d84dc02

Browse files
committed
d760cbe refactor(core): Update interfaces for handling defer completion (#58206)
1 parent 629d3cc commit d84dc02

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 Oct 15 16:10:22 UTC 2024
2-
9ab663e7a29da63df03f453678ae9ed441c67a5d
1+
Tue Oct 15 16:54:52 UTC 2024
2+
d760cbe71b28abeefdbde74a81ac942fcb3eb870

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.0.0-next.9+sha-9ab663e
2+
* @license Angular v19.0.0-next.9+sha-d760cbe
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -30056,7 +30056,7 @@ function publishFacade(global) {
3005630056
* @description
3005730057
* Entry point for all public APIs of the compiler package.
3005830058
*/
30059-
const VERSION = new Version('19.0.0-next.9+sha-9ab663e');
30059+
const VERSION = new Version('19.0.0-next.9+sha-d760cbe');
3006030060

3006130061
class CompilerConfig {
3006230062
constructor({ defaultEncapsulation = ViewEncapsulation.Emulated, preserveWhitespaces, strictInjectionParameters, } = {}) {
@@ -31791,7 +31791,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3179131791
function compileDeclareClassMetadata(metadata) {
3179231792
const definitionMap = new DefinitionMap();
3179331793
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
31794-
definitionMap.set('version', literal('19.0.0-next.9+sha-9ab663e'));
31794+
definitionMap.set('version', literal('19.0.0-next.9+sha-d760cbe'));
3179531795
definitionMap.set('ngImport', importExpr(Identifiers.core));
3179631796
definitionMap.set('type', metadata.type);
3179731797
definitionMap.set('decorators', metadata.decorators);
@@ -31809,7 +31809,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3180931809
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3181031810
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3181131811
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
31812-
definitionMap.set('version', literal('19.0.0-next.9+sha-9ab663e'));
31812+
definitionMap.set('version', literal('19.0.0-next.9+sha-d760cbe'));
3181331813
definitionMap.set('ngImport', importExpr(Identifiers.core));
3181431814
definitionMap.set('type', metadata.type);
3181531815
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -31904,7 +31904,7 @@ function createDirectiveDefinitionMap(meta) {
3190431904
const definitionMap = new DefinitionMap();
3190531905
const minVersion = getMinimumVersionForPartialOutput(meta);
3190631906
definitionMap.set('minVersion', literal(minVersion));
31907-
definitionMap.set('version', literal('19.0.0-next.9+sha-9ab663e'));
31907+
definitionMap.set('version', literal('19.0.0-next.9+sha-d760cbe'));
3190831908
// e.g. `type: MyDirective`
3190931909
definitionMap.set('type', meta.type.value);
3191031910
if (meta.isStandalone !== undefined) {
@@ -32326,7 +32326,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3232632326
function compileDeclareFactoryFunction(meta) {
3232732327
const definitionMap = new DefinitionMap();
3232832328
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
32329-
definitionMap.set('version', literal('19.0.0-next.9+sha-9ab663e'));
32329+
definitionMap.set('version', literal('19.0.0-next.9+sha-d760cbe'));
3233032330
definitionMap.set('ngImport', importExpr(Identifiers.core));
3233132331
definitionMap.set('type', meta.type.value);
3233232332
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -32361,7 +32361,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3236132361
function createInjectableDefinitionMap(meta) {
3236232362
const definitionMap = new DefinitionMap();
3236332363
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
32364-
definitionMap.set('version', literal('19.0.0-next.9+sha-9ab663e'));
32364+
definitionMap.set('version', literal('19.0.0-next.9+sha-d760cbe'));
3236532365
definitionMap.set('ngImport', importExpr(Identifiers.core));
3236632366
definitionMap.set('type', meta.type.value);
3236732367
// Only generate providedIn property if it has a non-null value
@@ -32412,7 +32412,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3241232412
function createInjectorDefinitionMap(meta) {
3241332413
const definitionMap = new DefinitionMap();
3241432414
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
32415-
definitionMap.set('version', literal('19.0.0-next.9+sha-9ab663e'));
32415+
definitionMap.set('version', literal('19.0.0-next.9+sha-d760cbe'));
3241632416
definitionMap.set('ngImport', importExpr(Identifiers.core));
3241732417
definitionMap.set('type', meta.type.value);
3241832418
definitionMap.set('providers', meta.providers);
@@ -32445,7 +32445,7 @@ function createNgModuleDefinitionMap(meta) {
3244532445
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3244632446
}
3244732447
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
32448-
definitionMap.set('version', literal('19.0.0-next.9+sha-9ab663e'));
32448+
definitionMap.set('version', literal('19.0.0-next.9+sha-d760cbe'));
3244932449
definitionMap.set('ngImport', importExpr(Identifiers.core));
3245032450
definitionMap.set('type', meta.type.value);
3245132451
// We only generate the keys in the metadata if the arrays contain values.
@@ -32496,7 +32496,7 @@ function compileDeclarePipeFromMetadata(meta) {
3249632496
function createPipeDefinitionMap(meta) {
3249732497
const definitionMap = new DefinitionMap();
3249832498
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
32499-
definitionMap.set('version', literal('19.0.0-next.9+sha-9ab663e'));
32499+
definitionMap.set('version', literal('19.0.0-next.9+sha-d760cbe'));
3250032500
definitionMap.set('ngImport', importExpr(Identifiers.core));
3250132501
// e.g. `type: MyPipe`
3250232502
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.0.0-next.9+sha-9ab663e
2+
* @license Angular v19.0.0-next.9+sha-d760cbe
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.0.0-next.9+sha-9ab663e",
3+
"version": "19.0.0-next.9+sha-d760cbe",
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.0.0-next.9+sha-9ab663e"
14+
"@angular/core": "19.0.0-next.9+sha-d760cbe"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)