build: extract interface and util sub compilation from core (#28028)
PR Close #28028
This commit is contained in:

committed by
Andrew Kushnir

parent
b05baa59e0
commit
885f1af509
@ -6,7 +6,8 @@
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
import {getSymbolIterator, looseIdentical} from '../util';
|
||||
import {looseIdentical} from '../util/comparison';
|
||||
import {getSymbolIterator} from '../util/symbol';
|
||||
|
||||
export function devModeEqual(a: any, b: any): boolean {
|
||||
const isListLikeIterableA = isListLikeIterable(a);
|
||||
|
@ -6,8 +6,10 @@
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
import {looseIdentical, stringify} from '../../util';
|
||||
import {looseIdentical} from '../../util/comparison';
|
||||
import {stringify} from '../../util/stringify';
|
||||
import {isListLikeIterable, iterateListLike} from '../change_detection_util';
|
||||
|
||||
import {IterableChangeRecord, IterableChanges, IterableDiffer, IterableDifferFactory, NgIterable, TrackByFunction} from './iterable_differs';
|
||||
|
||||
|
||||
|
@ -6,7 +6,8 @@
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
import {looseIdentical, stringify} from '../../util';
|
||||
import {looseIdentical} from '../../util/comparison';
|
||||
import {stringify} from '../../util/stringify';
|
||||
import {isJsObject} from '../change_detection_util';
|
||||
import {KeyValueChangeRecord, KeyValueChanges, KeyValueDiffer, KeyValueDifferFactory} from './keyvalue_differs';
|
||||
|
||||
|
@ -6,12 +6,13 @@
|
||||
* found in the LICENSE file at https://angular.io/license
|
||||
*/
|
||||
|
||||
import {defineInjectable} from '../../di/defs';
|
||||
import {defineInjectable} from '../../di/interface/defs';
|
||||
import {StaticProvider} from '../../di/interface/provider';
|
||||
import {Optional, SkipSelf} from '../../di/metadata';
|
||||
import {StaticProvider} from '../../di/provider';
|
||||
import {DefaultIterableDifferFactory} from '../differs/default_iterable_differ';
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* A type describing supported iterable types.
|
||||
*
|
||||
|
Reference in New Issue
Block a user