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