From 58442e1ad40713e7f885fd4c3d8a4028e14919ea Mon Sep 17 00:00:00 2001 From: Dan Onoshko Date: Fri, 2 Jan 2015 02:42:45 +0700 Subject: [PATCH] ES6 for ...of is added --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6ec9a76b..8fde613a 100644 --- a/README.md +++ b/README.md @@ -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 @@ -570,13 +576,7 @@ Future plans Array arr = [0...10]; Object obj = { name: "Eric" }; - -- ES6 `for` - - for(name of names){ - - } - + - write documentation of tokenizer/parser methods - more informative exceptions - better source maps