first chunk of interfaces that are valid via dart analyzer

This commit is contained in:
Misko Hevery
2014-09-19 16:38:37 -07:00
committed by Tobias Bosch
parent 29c20f7a50
commit 8afa421d75
40 changed files with 462 additions and 9 deletions

View File

@ -0,0 +1,9 @@
import {describe, id} from 'spec/spec';
function main() {
describe('compiler', () => {
it('should hello', () => {
print('I am working');
});
});
}