Implement asc in js for dist

This commit is contained in:
dcodeIO
2017-12-05 15:06:44 +01:00
parent df212653a8
commit 330752908a
12 changed files with 348 additions and 173 deletions

6
tests/compiler/for.ts Normal file
View File

@ -0,0 +1,6 @@
let i: i32;
for (i = 0; i < 10; ++i) {
;
}
if (i != 10)
unreachable();