ES6 for ...of is added

This commit is contained in:
Dan Onoshko 2015-01-02 02:42:45 +07:00
parent 4db28f7851
commit 58442e1ad4

View File

@ -549,6 +549,12 @@ Future plans
- `@use client` and `@use server` commands, status: done
- control flows without braces, status: done
- ES6 `for`, status: done
for(name of names){
}
- static typing
- `@use` expressions
@ -571,12 +577,6 @@ Future plans
Array<int> arr = [0...10];
Object<String, String> obj = { name: "Eric" };
- ES6 `for`
for(name of names){
}
- write documentation of tokenizer/parser methods
- more informative exceptions
- better source maps