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

@ -20,10 +20,10 @@ import {
CompiledHostTemplate,
CompiledTemplate,
BeginComponentCmd
} from 'angular2/src/core/compiler/template_commands';
} from 'angular2/src/core/linker/template_commands';
import {RuntimeCompiler} from 'angular2/src/compiler/runtime_compiler';
import {ProtoViewFactory} from 'angular2/src/core/compiler/proto_view_factory';
import {AppProtoView} from 'angular2/src/core/compiler/view';
import {ProtoViewFactory} from 'angular2/src/core/linker/proto_view_factory';
import {AppProtoView} from 'angular2/src/core/linker/view';
export function main() {
describe('RuntimeCompiler', () => {
@ -89,4 +89,4 @@ export function main() {
@Component({selector: 'some-comp'})
@View({template: ''})
class SomeComponent {
}
}