2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2015-10-04 12:33:20 -04:00
|
|
|
export const NG2_COMPILER = 'ng2.Compiler';
|
|
|
|
export const NG2_INJECTOR = 'ng2.Injector';
|
2016-04-13 20:05:17 -04:00
|
|
|
export const NG2_COMPONENT_FACTORY_REF_MAP = 'ng2.ComponentFactoryRefMap';
|
2015-10-04 12:33:20 -04:00
|
|
|
export const NG2_ZONE = 'ng2.NgZone';
|
|
|
|
|
2015-10-11 14:18:11 -04:00
|
|
|
export const NG1_CONTROLLER = '$controller';
|
2015-10-04 12:33:20 -04:00
|
|
|
export const NG1_SCOPE = '$scope';
|
|
|
|
export const NG1_ROOT_SCOPE = '$rootScope';
|
|
|
|
export const NG1_COMPILE = '$compile';
|
2015-10-11 14:18:11 -04:00
|
|
|
export const NG1_HTTP_BACKEND = '$httpBackend';
|
2015-10-04 12:33:20 -04:00
|
|
|
export const NG1_INJECTOR = '$injector';
|
|
|
|
export const NG1_PARSE = '$parse';
|
2015-10-11 14:18:11 -04:00
|
|
|
export const NG1_TEMPLATE_CACHE = '$templateCache';
|
2016-03-14 17:36:41 -04:00
|
|
|
export const NG1_TESTABILITY = '$$testability';
|
2016-05-17 18:55:53 -04:00
|
|
|
export const REQUIRE_INJECTOR = '?^' + NG2_INJECTOR;
|