refactor(imports): simplify paths
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import {Type, stringify, isFunction} from '../../src/facade/lang';
|
||||
import {Type, stringify, isFunction} from '../facade/lang';
|
||||
|
||||
/**
|
||||
* An interface that a function passed into {@link forwardRef} has to implement.
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {unimplemented} from '../../src/facade/exceptions';
|
||||
import {unimplemented} from '../facade/exceptions';
|
||||
|
||||
const _THROW_IF_NOT_FOUND = /*@ts2dart_const*/ new Object();
|
||||
export const THROW_IF_NOT_FOUND = /*@ts2dart_const*/ _THROW_IF_NOT_FOUND;
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {stringify} from '../../src/facade/lang';
|
||||
import {stringify} from '../facade/lang';
|
||||
|
||||
/**
|
||||
* A parameter metadata that specifies a dependency.
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {normalizeBool, Type, isType, isBlank, isFunction, stringify} from '../../src/facade/lang';
|
||||
import {BaseException} from '../../src/facade/exceptions';
|
||||
import {normalizeBool, Type, isType, isBlank, isFunction, stringify} from '../facade/lang';
|
||||
import {BaseException} from '../facade/exceptions';
|
||||
|
||||
/**
|
||||
* Describes how the {@link Injector} should instantiate a given token.
|
||||
|
@ -1,6 +1,6 @@
|
||||
import {ListWrapper} from '../../src/facade/collection';
|
||||
import {stringify, isBlank} from '../../src/facade/lang';
|
||||
import {BaseException, WrappedException} from '../../src/facade/exceptions';
|
||||
import {ListWrapper} from '../facade/collection';
|
||||
import {stringify, isBlank} from '../facade/lang';
|
||||
import {BaseException, WrappedException} from '../facade/exceptions';
|
||||
import {ReflectiveKey} from './reflective_key';
|
||||
import {ReflectiveInjector} from './reflective_injector';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {ListWrapper} from '../../src/facade/collection';
|
||||
import {ListWrapper} from '../facade/collection';
|
||||
import {Provider} from './provider';
|
||||
import {
|
||||
ResolvedReflectiveProvider,
|
||||
@ -13,8 +13,8 @@ import {
|
||||
InstantiationError,
|
||||
OutOfBoundsError
|
||||
} from './reflective_exceptions';
|
||||
import {Type} from '../../src/facade/lang';
|
||||
import {BaseException, unimplemented} from '../../src/facade/exceptions';
|
||||
import {Type} from '../facade/lang';
|
||||
import {BaseException, unimplemented} from '../facade/exceptions';
|
||||
import {ReflectiveKey} from './reflective_key';
|
||||
import {SelfMetadata, SkipSelfMetadata} from './metadata';
|
||||
import {Injector, THROW_IF_NOT_FOUND} from './injector';
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {stringify, isBlank} from '../../src/facade/lang';
|
||||
import {BaseException} from '../../src/facade/exceptions';
|
||||
import {stringify, isBlank} from '../facade/lang';
|
||||
import {BaseException} from '../facade/exceptions';
|
||||
import {resolveForwardRef} from './forward_ref';
|
||||
|
||||
/**
|
||||
|
@ -3,8 +3,8 @@ import {
|
||||
isBlank,
|
||||
isPresent,
|
||||
isArray,
|
||||
} from '../../src/facade/lang';
|
||||
import {MapWrapper, ListWrapper} from '../../src/facade/collection';
|
||||
} from '../facade/lang';
|
||||
import {MapWrapper, ListWrapper} from '../facade/collection';
|
||||
import {reflector} from '../reflection/reflection';
|
||||
import {ReflectiveKey} from './reflective_key';
|
||||
import {
|
||||
|
Reference in New Issue
Block a user