view.ts (angular-11.0.1) | : | view.ts (angular-11.0.2) | ||
---|---|---|---|---|
skipping to change at line 12 | skipping to change at line 12 | |||
* @license | * @license | |||
* Copyright Google LLC All Rights Reserved. | * Copyright Google LLC All Rights Reserved. | |||
* | * | |||
* Use of this source code is governed by an MIT-style license that can be | * 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 | * found in the LICENSE file at https://angular.io/license | |||
*/ | */ | |||
import {InjectionToken} from '../../di/injection_token'; | import {InjectionToken} from '../../di/injection_token'; | |||
import {Injector} from '../../di/injector'; | import {Injector} from '../../di/injector'; | |||
import {Type} from '../../interface/type'; | import {Type} from '../../interface/type'; | |||
import {SchemaMetadata} from '../../metadata'; | import {SchemaMetadata} from '../../metadata/schema'; | |||
import {Sanitizer} from '../../sanitization/sanitizer'; | import {Sanitizer} from '../../sanitization/sanitizer'; | |||
import {LContainer} from './container'; | import {LContainer} from './container'; | |||
import {ComponentDef, ComponentTemplate, DirectiveDef, DirectiveDefList, HostBin dingsFunction, PipeDef, PipeDefList, ViewQueriesFunction} from './definition'; | import {ComponentDef, ComponentTemplate, DirectiveDef, DirectiveDefList, HostBin dingsFunction, PipeDef, PipeDefList, ViewQueriesFunction} from './definition'; | |||
import {I18nUpdateOpCodes, TI18n, TIcu} from './i18n'; | import {I18nUpdateOpCodes, TI18n, TIcu} from './i18n'; | |||
import {TConstants, TNode} from './node'; | import {TConstants, TNode} from './node'; | |||
import {PlayerHandler} from './player'; | import {PlayerHandler} from './player'; | |||
import {LQueries, TQueries} from './query'; | import {LQueries, TQueries} from './query'; | |||
import {RComment, RElement, Renderer3, RendererFactory3} from './renderer'; | import {Renderer3, RendererFactory3} from './renderer'; | |||
import {RComment, RElement} from './renderer_dom'; | ||||
import {TStylingKey, TStylingRange} from './styling'; | import {TStylingKey, TStylingRange} from './styling'; | |||
// Below are constants for LView indices to help us look up LView members | // Below are constants for LView indices to help us look up LView members | |||
// without having to remember the specific indices. | // without having to remember the specific indices. | |||
// Uglify will inline these when minifying so there shouldn't be a cost. | // Uglify will inline these when minifying so there shouldn't be a cost. | |||
export const HOST = 0; | export const HOST = 0; | |||
export const TVIEW = 1; | export const TVIEW = 1; | |||
export const FLAGS = 2; | export const FLAGS = 2; | |||
export const PARENT = 3; | export const PARENT = 3; | |||
export const NEXT = 4; | export const NEXT = 4; | |||
End of changes. 3 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added |