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
@@ -1,4 +1,4 @@
import {ListWrapper} from '../../src/facade/collection';
import {ListWrapper} from '../facade/collection';
export class AST {
visit(visitor: AstVisitor, context: any = null): any { return null; }
@@ -1,7 +1,7 @@
import {Injectable} from '@angular/core';
import {SetWrapper} from '../../src/facade/collection';
import {NumberWrapper, StringJoiner, StringWrapper, isPresent} from '../../src/facade/lang';
import {BaseException} from '../../src/facade/exceptions';
import {SetWrapper} from '../facade/collection';
import {NumberWrapper, StringJoiner, StringWrapper, isPresent} from '../facade/lang';
import {BaseException} from '../facade/exceptions';
export enum TokenType {
Character,
@@ -1,7 +1,7 @@
import {Injectable} from '@angular/core';
import {isBlank, isPresent, StringWrapper} from '../../src/facade/lang';
import {BaseException} from '../../src/facade/exceptions';
import {ListWrapper} from '../../src/facade/collection';
import {isBlank, isPresent, StringWrapper} from '../facade/lang';
import {BaseException} from '../facade/exceptions';
import {ListWrapper} from '../facade/collection';
import {
Lexer,
EOF,