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

View File

@ -66,3 +66,14 @@ export class Set<T> {
// TODO: think about iterators
}
// class SetIterator<T> extends Iterator<T> {
// get done(): bool {
// throw new Error("not implemented");
// }
// next(): T {
// throw new Error("not implemented");
// }
// }