b6431c60e6
The private classes `ApplicationRef_`, `PlatformRef_`, `JSONPConnection_`, `JSONPBackend_`, `ClientMessageBrokerFactory_`, `ServiceMessageBroker_`, `ClientMessageBroker_` and `ServiceMessageBrokerFactory_` have been removed and merged into their public equivalents. The size of the minified umd bundles have been slightly decreased: | package | before | after | | -------------------|------------|------------| | core | 217.791 kb | 217.144 kb | | http | 33.260 kb | 32.838 kb | | platform-webworker | 56.015 kb | 54.933 kb | PR Close #19143
29 lines
882 B
TypeScript
29 lines
882 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import {Injector, ɵglobal as global} from '@angular/core';
|
|
import {ApplicationRef} from '@angular/core/src/application_ref';
|
|
import {SpyObject} from '@angular/core/testing/src/testing_internal';
|
|
|
|
export class SpyApplicationRef extends SpyObject {
|
|
constructor() { super(ApplicationRef); }
|
|
}
|
|
|
|
export class SpyComponentRef extends SpyObject {
|
|
injector: any /** TODO #9100 */;
|
|
constructor() {
|
|
super();
|
|
this.injector =
|
|
Injector.create([{provide: ApplicationRef, useClass: SpyApplicationRef, deps: []}]);
|
|
}
|
|
}
|
|
|
|
export function callNgProfilerTimeChangeDetection(config?: any /** TODO #9100 */): void {
|
|
(<any>global).ng.profiler.timeChangeDetection(config);
|
|
}
|