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