refactor(imports): simplify paths

This commit is contained in:
Victor Berchet
2016-05-31 15:22:59 -07:00
parent b00b9fe564
commit 27a47e7841
154 changed files with 291 additions and 294 deletions

View File

@ -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';

View File

@ -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';

View File

@ -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';

View File

@ -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';

View File

@ -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';

View File

@ -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';

View File

@ -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';

View File

@ -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';

View File

@ -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 {

View File

@ -1,6 +1,6 @@
import {
ListWrapper,
} from '../../src/facade/collection';
} from '../facade/collection';
import {
TemplateAst,
TemplateAstVisitor,

View File

@ -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';