refactor(core): move core/compiler to core/linker, adjust imports

This commit is contained in:
Tobias Bosch
2015-10-02 07:37:23 -07:00
parent 9f4fa1ab0a
commit 6248a5e846
86 changed files with 204 additions and 204 deletions

View File

@ -4,7 +4,7 @@ import {isBlank, isPresent} from 'angular2/src/core/facade/lang';
import {BaseException, WrappedException} from 'angular2/src/core/facade/exceptions';
import {Directive, Attribute} from 'angular2/src/core/metadata';
import {DynamicComponentLoader, ComponentRef, ElementRef} from 'angular2/src/core/compiler';
import {DynamicComponentLoader, ComponentRef, ElementRef} from 'angular2/src/core/linker';
import {Injector, bind, Dependency} from 'angular2/src/core/di';
import * as routerMod from './router';