Skip to content

Commit aafcc8b

Browse files
committed
db467e1 refactor(core): Additional cleanup for incremental hydration (#58394)
1 parent 14f5ac9 commit aafcc8b

File tree

8 files changed

+26
-24
lines changed

8 files changed

+26
-24
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Mon Oct 28 16:33:09 UTC 2024
2-
0f2f7ec754a26c089c81cfdbb0ddc1fa8a269e16
1+
Mon Oct 28 19:47:22 UTC 2024
2+
db467e10b707dd4a74919ebb5b9700bcc6ab5ed0

fesm2022/platform-browser-dynamic.mjs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v19.1.0-next.0+sha-0f2f7ec
2+
* @license Angular v19.1.0-next.0+sha-db467e1
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -20,6 +20,7 @@ const COMPILER_PROVIDERS = [
2020
* Ivy JIT mode doesn't require accessing this symbol.
2121
*/
2222
class JitCompilerFactory {
23+
_defaultOptions;
2324
/** @internal */
2425
constructor(defaultOptions) {
2526
const compilerOptions = {
@@ -112,10 +113,10 @@ class ResourceLoaderImpl extends ResourceLoader {
112113
xhr.send();
113114
return promise;
114115
}
115-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-0f2f7ec", ngImport: i0, type: ResourceLoaderImpl, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
116-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-0f2f7ec", ngImport: i0, type: ResourceLoaderImpl }); }
116+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-db467e1", ngImport: i0, type: ResourceLoaderImpl, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
117+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-db467e1", ngImport: i0, type: ResourceLoaderImpl });
117118
}
118-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-0f2f7ec", ngImport: i0, type: ResourceLoaderImpl, decorators: [{
119+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-db467e1", ngImport: i0, type: ResourceLoaderImpl, decorators: [{
119120
type: Injectable
120121
}] });
121122

@@ -140,7 +141,7 @@ const INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS = [
140141
/**
141142
* @publicApi
142143
*/
143-
const VERSION = new Version('19.1.0-next.0+sha-0f2f7ec');
144+
const VERSION = new Version('19.1.0-next.0+sha-db467e1');
144145

145146
/**
146147
* @publicApi

fesm2022/platform-browser-dynamic.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.

fesm2022/testing.mjs

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v19.1.0-next.0+sha-0f2f7ec
2+
* @license Angular v19.1.0-next.0+sha-db467e1
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -15,6 +15,7 @@ import { ɵgetDOM, DOCUMENT } from '@angular/common';
1515
* A DOM based implementation of the TestComponentRenderer.
1616
*/
1717
class DOMTestComponentRenderer extends TestComponentRenderer {
18+
_doc;
1819
constructor(_doc) {
1920
super();
2021
this._doc = _doc;
@@ -41,10 +42,10 @@ class DOMTestComponentRenderer extends TestComponentRenderer {
4142
ɵgetDOM().remove(oldRoots[i]);
4243
}
4344
}
44-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-0f2f7ec", ngImport: i0, type: DOMTestComponentRenderer, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable }); }
45-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-0f2f7ec", ngImport: i0, type: DOMTestComponentRenderer }); }
45+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-db467e1", ngImport: i0, type: DOMTestComponentRenderer, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
46+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-db467e1", ngImport: i0, type: DOMTestComponentRenderer });
4647
}
47-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-0f2f7ec", ngImport: i0, type: DOMTestComponentRenderer, decorators: [{
48+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-db467e1", ngImport: i0, type: DOMTestComponentRenderer, decorators: [{
4849
type: Injectable
4950
}], ctorParameters: () => [{ type: undefined, decorators: [{
5051
type: Inject,
@@ -68,11 +69,11 @@ const platformBrowserDynamicTesting = createPlatformFactory(platformCoreDynamicT
6869
* @publicApi
6970
*/
7071
class BrowserDynamicTestingModule {
71-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-0f2f7ec", ngImport: i0, type: BrowserDynamicTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
72-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.0-next.0+sha-0f2f7ec", ngImport: i0, type: BrowserDynamicTestingModule, exports: [BrowserTestingModule] }); }
73-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-0f2f7ec", ngImport: i0, type: BrowserDynamicTestingModule, providers: [{ provide: TestComponentRenderer, useClass: DOMTestComponentRenderer }], imports: [BrowserTestingModule] }); }
72+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-db467e1", ngImport: i0, type: BrowserDynamicTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
73+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.0-next.0+sha-db467e1", ngImport: i0, type: BrowserDynamicTestingModule, exports: [BrowserTestingModule] });
74+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-db467e1", ngImport: i0, type: BrowserDynamicTestingModule, providers: [{ provide: TestComponentRenderer, useClass: DOMTestComponentRenderer }], imports: [BrowserTestingModule] });
7475
}
75-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-0f2f7ec", ngImport: i0, type: BrowserDynamicTestingModule, decorators: [{
76+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.0-next.0+sha-db467e1", ngImport: i0, type: BrowserDynamicTestingModule, decorators: [{
7677
type: NgModule,
7778
args: [{
7879
exports: [BrowserTestingModule],

fesm2022/testing.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.1.0-next.0+sha-0f2f7ec
2+
* @license Angular v19.1.0-next.0+sha-db467e1
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/

0 commit comments

Comments
 (0)