Update the license headers throughout the repository to reference Google LLC rather than Google Inc, for the required license headers. PR Close #37205
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * @license
 | 
						|
 * Copyright Google LLC 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 {NgZone, PlatformRef, Type} from '@angular/core';
 | 
						|
import {UpgradeModule} from '@angular/upgrade/static';
 | 
						|
import * as angular from '../../../src/common/src/angular1';
 | 
						|
import {$EXCEPTION_HANDLER, $ROOT_SCOPE} from '../../../src/common/src/constants';
 | 
						|
 | 
						|
export function bootstrap(
 | 
						|
    platform: PlatformRef, Ng2Module: Type<{}>, element: Element, ng1Module: angular.IModule) {
 | 
						|
  // We bootstrap the Angular module first; then when it is ready (async) we bootstrap the AngularJS
 | 
						|
  // module on the bootstrap element (also ensuring that AngularJS errors will fail the test).
 | 
						|
  return platform.bootstrapModule(Ng2Module).then(ref => {
 | 
						|
    const ngZone = ref.injector.get<NgZone>(NgZone);
 | 
						|
    const upgrade = ref.injector.get(UpgradeModule);
 | 
						|
    const failHardModule: any = ($provide: angular.IProvideService) => {
 | 
						|
      $provide.value($EXCEPTION_HANDLER, (err: any) => {
 | 
						|
        throw err;
 | 
						|
      });
 | 
						|
    };
 | 
						|
 | 
						|
    // The `bootstrap()` helper is used for convenience in tests, so that we don't have to inject
 | 
						|
    // and call `upgrade.bootstrap()` on every Angular module.
 | 
						|
    // In order to closer emulate what happens in real application, ensure AngularJS is bootstrapped
 | 
						|
    // inside the Angular zone.
 | 
						|
    //
 | 
						|
    ngZone.run(() => upgrade.bootstrap(element, [failHardModule, ng1Module.name]));
 | 
						|
 | 
						|
    return upgrade;
 | 
						|
  });
 | 
						|
}
 | 
						|
 | 
						|
export function $apply(adapter: UpgradeModule, exp: angular.Ng1Expression) {
 | 
						|
  const $rootScope = adapter.$injector.get($ROOT_SCOPE) as angular.IRootScopeService;
 | 
						|
  $rootScope.$apply(exp);
 | 
						|
}
 | 
						|
 | 
						|
export function $digest(adapter: UpgradeModule) {
 | 
						|
  const $rootScope = adapter.$injector.get($ROOT_SCOPE) as angular.IRootScopeService;
 | 
						|
  $rootScope.$digest();
 | 
						|
}
 |