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,9 +1,9 @@
import {describe, it, expect} from 'test_lib/test_lib';
import {describe, it, expect} from 'angular2/test_lib';
import {Lexer, Token} from 'change_detection/src/parser/lexer';
import {Lexer, Token} from 'angular2/src/change_detection/parser/lexer';
import {List, ListWrapper} from "facade/src/collection";
import {StringWrapper, int} from "facade/src/lang";
import {List, ListWrapper} from "angular2/src/facade/collection";
import {StringWrapper, int} from "angular2/src/facade/lang";
function lex(text:string):List {
return new Lexer().tokenize(text);