6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
8
9
- import { ANALYZE_FOR_ENTRY_COMPONENTS , ChangeDetectionStrategy , ChangeDetectorRef , ComponentFactory , ComponentFactoryResolver , ElementRef , Injector , LOCALE_ID as LOCALE_ID_ , NgModuleFactory , QueryList , RenderComponentType , Renderer , SecurityContext , SimpleChange , TRANSLATIONS_FORMAT as TRANSLATIONS_FORMAT_ , TemplateRef , ViewContainerRef , ViewEncapsulation } from '@angular/core' ;
9
+ import { ANALYZE_FOR_ENTRY_COMPONENTS , AnimationTransitionEvent , ChangeDetectionStrategy , ChangeDetectorRef , ComponentFactory , ComponentFactoryResolver , ElementRef , Injector , LOCALE_ID , NgModuleFactory , QueryList , RenderComponentType , Renderer , SecurityContext , SimpleChange , TRANSLATIONS_FORMAT , TemplateRef , ViewContainerRef , ViewEncapsulation } from '@angular/core' ;
10
10
11
11
import { CompileIdentifierMetadata , CompileTokenMetadata } from './compile_metadata' ;
12
- import { AnimationGroupPlayer , AnimationKeyframe , AnimationSequencePlayer , AnimationStyles , AnimationTransition , AppElement , AppView , ChangeDetectorStatus , CodegenComponentFactoryResolver , DebugAppView , DebugContext , EMPTY_ARRAY , EMPTY_MAP , NgModuleInjector , NoOpAnimationPlayer , StaticNodeDebugInfo , TemplateRef_ , UNINITIALIZED , ValueUnwrapper , ViewType , ViewUtils , balanceAnimationKeyframes , castByValue , checkBinding , clearStyles , collectAndResolveStyles , devModeEqual , flattenNestedViewRenderNodes , interpolate , prepareFinalAnimationStyles , pureProxy1 , pureProxy10 , pureProxy2 , pureProxy3 , pureProxy4 , pureProxy5 , pureProxy6 , pureProxy7 , pureProxy8 , pureProxy9 , reflector , registerModuleFactory , renderStyles } from './private_import_core' ;
12
+ import { AnimationGroupPlayer , AnimationKeyframe , AnimationSequencePlayer , AnimationStyles , AnimationTransition , AppElement , AppView , ChangeDetectorStatus , CodegenComponentFactoryResolver , DebugAppView , DebugContext , NgModuleInjector , NoOpAnimationPlayer , StaticNodeDebugInfo , TemplateRef_ , UNINITIALIZED , ValueUnwrapper , ViewType , balanceAnimationKeyframes , clearStyles , collectAndResolveStyles , devModeEqual , prepareFinalAnimationStyles , reflector , registerModuleFactory , renderStyles , view_utils } from './private_import_core' ;
13
13
import { assetUrl } from './util' ;
14
14
15
15
var APP_VIEW_MODULE_URL = assetUrl ( 'core' , 'linker/view' ) ;
@@ -33,7 +33,7 @@ export class Identifiers {
33
33
static ViewUtils : IdentifierSpec = {
34
34
name : 'ViewUtils' ,
35
35
moduleUrl : assetUrl ( 'core' , 'linker/view_utils' ) ,
36
- runtime : ViewUtils
36
+ runtime : view_utils . ViewUtils
37
37
} ;
38
38
static AppView :
39
39
IdentifierSpec = { name : 'AppView' , moduleUrl : APP_VIEW_MODULE_URL , runtime : AppView } ;
@@ -161,45 +161,48 @@ export class Identifiers {
161
161
static checkBinding : IdentifierSpec = {
162
162
name : 'checkBinding' ,
163
163
moduleUrl : VIEW_UTILS_MODULE_URL ,
164
- runtime : checkBinding
164
+ runtime : view_utils . checkBinding
165
165
} ;
166
166
static flattenNestedViewRenderNodes : IdentifierSpec = {
167
167
name : 'flattenNestedViewRenderNodes' ,
168
168
moduleUrl : VIEW_UTILS_MODULE_URL ,
169
- runtime : flattenNestedViewRenderNodes
169
+ runtime : view_utils . flattenNestedViewRenderNodes
170
170
} ;
171
171
static devModeEqual :
172
172
IdentifierSpec = { name : 'devModeEqual' , moduleUrl : CD_MODULE_URL , runtime : devModeEqual } ;
173
173
static interpolate : IdentifierSpec = {
174
174
name : 'interpolate' ,
175
175
moduleUrl : VIEW_UTILS_MODULE_URL ,
176
- runtime : interpolate
176
+ runtime : view_utils . interpolate
177
177
} ;
178
178
static castByValue : IdentifierSpec = {
179
179
name : 'castByValue' ,
180
180
moduleUrl : VIEW_UTILS_MODULE_URL ,
181
- runtime : castByValue
181
+ runtime : view_utils . castByValue
182
182
} ;
183
183
static EMPTY_ARRAY : IdentifierSpec = {
184
184
name : 'EMPTY_ARRAY' ,
185
185
moduleUrl : VIEW_UTILS_MODULE_URL ,
186
- runtime : EMPTY_ARRAY
186
+ runtime : view_utils . EMPTY_ARRAY
187
+ } ;
188
+ static EMPTY_MAP : IdentifierSpec = {
189
+ name : 'EMPTY_MAP' ,
190
+ moduleUrl : VIEW_UTILS_MODULE_URL ,
191
+ runtime : view_utils . EMPTY_MAP
187
192
} ;
188
- static EMPTY_MAP :
189
- IdentifierSpec = { name : 'EMPTY_MAP' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : EMPTY_MAP } ;
190
193
191
194
static pureProxies = [
192
195
null ,
193
- { name : 'pureProxy1' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : pureProxy1 } ,
194
- { name : 'pureProxy2' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : pureProxy2 } ,
195
- { name : 'pureProxy3' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : pureProxy3 } ,
196
- { name : 'pureProxy4' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : pureProxy4 } ,
197
- { name : 'pureProxy5' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : pureProxy5 } ,
198
- { name : 'pureProxy6' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : pureProxy6 } ,
199
- { name : 'pureProxy7' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : pureProxy7 } ,
200
- { name : 'pureProxy8' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : pureProxy8 } ,
201
- { name : 'pureProxy9' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : pureProxy9 } ,
202
- { name : 'pureProxy10' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : pureProxy10 } ,
196
+ { name : 'pureProxy1' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : view_utils . pureProxy1 } ,
197
+ { name : 'pureProxy2' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : view_utils . pureProxy2 } ,
198
+ { name : 'pureProxy3' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : view_utils . pureProxy3 } ,
199
+ { name : 'pureProxy4' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : view_utils . pureProxy4 } ,
200
+ { name : 'pureProxy5' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : view_utils . pureProxy5 } ,
201
+ { name : 'pureProxy6' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : view_utils . pureProxy6 } ,
202
+ { name : 'pureProxy7' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : view_utils . pureProxy7 } ,
203
+ { name : 'pureProxy8' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : view_utils . pureProxy8 } ,
204
+ { name : 'pureProxy9' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : view_utils . pureProxy9 } ,
205
+ { name : 'pureProxy10' , moduleUrl : VIEW_UTILS_MODULE_URL , runtime : view_utils . pureProxy10 } ,
203
206
] ;
204
207
static SecurityContext : IdentifierSpec = {
205
208
name : 'SecurityContext' ,
@@ -259,12 +262,22 @@ export class Identifiers {
259
262
static LOCALE_ID : IdentifierSpec = {
260
263
name : 'LOCALE_ID' ,
261
264
moduleUrl : assetUrl ( 'core' , 'i18n/tokens' ) ,
262
- runtime : LOCALE_ID_
265
+ runtime : LOCALE_ID
263
266
} ;
264
267
static TRANSLATIONS_FORMAT : IdentifierSpec = {
265
268
name : 'TRANSLATIONS_FORMAT' ,
266
269
moduleUrl : assetUrl ( 'core' , 'i18n/tokens' ) ,
267
- runtime : TRANSLATIONS_FORMAT_
270
+ runtime : TRANSLATIONS_FORMAT
271
+ } ;
272
+ static setBindingDebugInfo : IdentifierSpec = {
273
+ name : 'setBindingDebugInfo' ,
274
+ moduleUrl : VIEW_UTILS_MODULE_URL ,
275
+ runtime : view_utils . setBindingDebugInfo
276
+ } ;
277
+ static setBindingDebugInfoForChanges : IdentifierSpec = {
278
+ name : 'setBindingDebugInfoForChanges' ,
279
+ moduleUrl : VIEW_UTILS_MODULE_URL ,
280
+ runtime : view_utils . setBindingDebugInfoForChanges
268
281
} ;
269
282
static AnimationTransition : IdentifierSpec = {
270
283
name : 'AnimationTransition' ,
0 commit comments