Better testing infrastructure; Initial exports/imports/re-exports

This commit is contained in:
dcodeIO
2017-12-02 01:14:15 +01:00
parent 00303fdf30
commit ef859937a8
34 changed files with 713 additions and 248 deletions

9
tests/parser/for.ts Normal file
View File

@ -0,0 +1,9 @@
for (let i: i32 = 0; i < 10; ++i) {
;
}
for (i = 0; i < 10; ++i) {
;
}
for (;;) {
;
}