From 1b36947fc7ce295c1bf6045c588a47b5a51c9da0 Mon Sep 17 00:00:00 2001 From: Onoshko Dan Date: Thu, 3 Jul 2014 01:06:31 +0700 Subject: [PATCH] TODO Updated --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 98bd74b9..e42ed078 100644 --- a/README.md +++ b/README.md @@ -383,7 +383,8 @@ Future plans arr[%index] = 34; // arr[index %% arr.length]; - static typing -- declaration function by object's property +- rename runtime prefix `$_cola` to `_crt$$` +- dotal names of refs String String::replaceAll(a, b){ String res = this; @@ -396,6 +397,10 @@ Future plans Object data = someData; int data.getFriendsCount() => this.friends.length; + // or + + Cola.AST_Node node = new Cola.AST_Node; + - intarface inerface UserProfile { @@ -501,6 +506,19 @@ Future plans this; // parent context }); +- namespaces + + @use namespace Cola { + + class AST_Node { + ... + } + + } + + Cola.AST_Node node = new Cola.AST_Node(); + + - write documentation of tokenizer/parser methods - more informative exceptions - better source maps