refactor(imports): simplify paths
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
import {BaseException} from '@angular/core';
|
||||
import {isPresent, isBlank} from '../../src/facade/lang';
|
||||
import {ListWrapper, StringMapWrapper} from '../../src/facade/collection';
|
||||
import {isPresent, isBlank} from '../facade/lang';
|
||||
import {ListWrapper, StringMapWrapper} from '../facade/collection';
|
||||
|
||||
import * as o from '../output/output_ast';
|
||||
import {Identifiers, identifierToken} from '../identifiers';
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {isPresent} from '../../src/facade/lang';
|
||||
import {ListWrapper} from '../../src/facade/collection';
|
||||
import {isPresent} from '../facade/lang';
|
||||
import {ListWrapper} from '../facade/collection';
|
||||
|
||||
import * as o from '../output/output_ast';
|
||||
import {TemplateAst} from '../template_ast';
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {isPresent, isBlank} from '../../src/facade/lang';
|
||||
import {ListWrapper} from '../../src/facade/collection';
|
||||
import {isPresent, isBlank} from '../facade/lang';
|
||||
import {ListWrapper} from '../facade/collection';
|
||||
|
||||
import * as o from '../output/output_ast';
|
||||
import {Identifiers} from '../identifiers';
|
||||
|
@ -1,7 +1,7 @@
|
||||
import {ViewType} from '../../core_private';
|
||||
|
||||
import {isPresent, isBlank} from '../../src/facade/lang';
|
||||
import {ListWrapper} from '../../src/facade/collection';
|
||||
import {isPresent, isBlank} from '../facade/lang';
|
||||
import {ListWrapper} from '../facade/collection';
|
||||
|
||||
import * as o from '../output/output_ast';
|
||||
import {EventHandlerVars} from './constants';
|
||||
|
@ -1,7 +1,7 @@
|
||||
import {ChangeDetectionStrategy, ViewEncapsulation} from '@angular/core';
|
||||
import {ChangeDetectorState, ViewType} from '../../core_private';
|
||||
|
||||
import {isBlank, resolveEnumToken} from '../../src/facade/lang';
|
||||
import {isBlank, resolveEnumToken} from '../facade/lang';
|
||||
import {CompileIdentifierMetadata} from '../compile_metadata';
|
||||
import * as o from '../output/output_ast';
|
||||
import {Identifiers} from '../identifiers';
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {isBlank, isPresent, StringWrapper} from '../../src/facade/lang';
|
||||
import {ListWrapper, StringMapWrapper} from '../../src/facade/collection';
|
||||
import {isBlank, isPresent, StringWrapper} from '../facade/lang';
|
||||
import {ListWrapper, StringMapWrapper} from '../facade/collection';
|
||||
|
||||
import {EventHandlerVars, ViewProperties} from './constants';
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {BaseException} from '../../src/facade/exceptions';
|
||||
import {isBlank, isPresent, isArray} from '../../src/facade/lang';
|
||||
import {BaseException} from '../facade/exceptions';
|
||||
import {isBlank, isPresent, isArray} from '../facade/lang';
|
||||
|
||||
import * as cdAst from '../expression_parser/ast';
|
||||
import * as o from '../output/output_ast';
|
||||
|
@ -1,6 +1,6 @@
|
||||
import {EMPTY_STATE as EMPTY_ANIMATION_STATE, LifecycleHooks, isDefaultChangeDetectionStrategy, SecurityContext} from '../../core_private';
|
||||
|
||||
import {isBlank, isPresent} from '../../src/facade/lang';
|
||||
import {isBlank, isPresent} from '../facade/lang';
|
||||
|
||||
import * as cdAst from '../expression_parser/ast';
|
||||
import * as o from '../output/output_ast';
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {isPresent, isBlank} from '../../src/facade/lang';
|
||||
import {BaseException} from '../../src/facade/exceptions';
|
||||
import {isPresent, isBlank} from '../facade/lang';
|
||||
import {BaseException} from '../facade/exceptions';
|
||||
|
||||
import * as o from '../output/output_ast';
|
||||
import {
|
||||
|
@ -1,6 +1,6 @@
|
||||
import {
|
||||
ListWrapper,
|
||||
} from '../../src/facade/collection';
|
||||
} from '../facade/collection';
|
||||
import {
|
||||
TemplateAst,
|
||||
TemplateAstVisitor,
|
||||
|
@ -1,8 +1,8 @@
|
||||
import {ChangeDetectionStrategy, ViewEncapsulation} from '@angular/core';
|
||||
import {isDefaultChangeDetectionStrategy, ViewType} from '../../core_private';
|
||||
|
||||
import {isPresent, StringWrapper} from '../../src/facade/lang';
|
||||
import {ListWrapper, StringMapWrapper, SetWrapper} from '../../src/facade/collection';
|
||||
import {isPresent, StringWrapper} from '../facade/lang';
|
||||
import {ListWrapper, StringMapWrapper, SetWrapper} from '../facade/collection';
|
||||
|
||||
import * as o from '../output/output_ast';
|
||||
import {Identifiers, identifierToken} from '../identifiers';
|
||||
|
Reference in New Issue
Block a user