chore(packaging): update import for the new file structure

This commit is contained in:
Yegor Jbanov
2015-02-05 13:08:05 -08:00
parent 3820609f24
commit 3f228669d7
134 changed files with 603 additions and 646 deletions

View File

@ -1,4 +1,4 @@
import {CONST} from "facade/src/lang";
import {CONST} from "angular2/src/facade/lang";
/**
* A parameter annotation that creates a synchronous eager dependency.

View File

@ -1,6 +1,6 @@
import {FIELD, Type, isBlank, isPresent} from 'facade/src/lang';
import {List, MapWrapper, ListWrapper} from 'facade/src/collection';
import {reflector} from 'reflection/src/reflection';
import {FIELD, Type, isBlank, isPresent} from 'angular2/src/facade/lang';
import {List, MapWrapper, ListWrapper} from 'angular2/src/facade/collection';
import {reflector} from 'angular2/src/reflection/reflection';
import {Key} from './key';
import {Inject, InjectLazy, InjectPromise, DependencyAnnotation} from './annotations';
import {NoAnnotationError} from './exceptions';

View File

@ -1,5 +1,5 @@
import {ListWrapper, List} from 'facade/src/collection';
import {stringify} from 'facade/src/lang';
import {ListWrapper, List} from 'angular2/src/facade/collection';
import {stringify} from 'angular2/src/facade/lang';
import {Key} from './key';
function findFirstClosedCycle(keys:List) {

View File

@ -1,9 +1,9 @@
import {Map, List, MapWrapper, ListWrapper} from 'facade/src/collection';
import {Map, List, MapWrapper, ListWrapper} from 'angular2/src/facade/collection';
import {Binding, BindingBuilder, bind} from './binding';
import {ProviderError, NoProviderError, InvalidBindingError,
AsyncBindingError, CyclicDependencyError, InstantiationError} from './exceptions';
import {FunctionWrapper, Type, isPresent, isBlank} from 'facade/src/lang';
import {Promise, PromiseWrapper} from 'facade/src/async';
import {FunctionWrapper, Type, isPresent, isBlank} from 'angular2/src/facade/lang';
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {Key} from './key';
var _constructing = new Object();

View File

@ -1,6 +1,6 @@
import {KeyMetadataError} from './exceptions';
import {MapWrapper, Map} from 'facade/src/collection';
import {FIELD, int, isPresent} from 'facade/src/lang';
import {MapWrapper, Map} from 'angular2/src/facade/collection';
import {FIELD, int, isPresent} from 'angular2/src/facade/lang';
export class Key {
token;