Parser fixes; Lib updates

This commit is contained in:
dcodeIO
2018-01-29 22:36:07 +01:00
parent 74498852f0
commit 1995bf9eb4
18 changed files with 282 additions and 103 deletions

4
std/assembly/iterator.ts Normal file
View File

@ -0,0 +1,4 @@
// export abstract class Iterator<T> {
// abstract get done(): bool;
// abstract next(): T;
// }