From 3822a3a902338a48aeb480f84970e6c785b6e21a Mon Sep 17 00:00:00 2001 From: Onoshko Dan Date: Thu, 29 May 2014 18:15:06 +0700 Subject: [PATCH] Updated. --- README.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a036e9a0..c350d837 100644 --- a/README.md +++ b/README.md @@ -360,6 +360,12 @@ As you see you can use keyword `when`, its like `case`, but if the condition is Future === - static typing +- set parameters to calling function + + $(".btn").on("click", () use (context: myContext){ + this; // myContext + }); + - classes class A { @@ -480,7 +486,7 @@ Future return i|0; } -- plugin api to making native syntax for libraries and frameworks, example: +- Plugin API to making native syntax for libraries and frameworks class MyComponent extends PolymerComponent { String tagname = "my-component"; @@ -497,6 +503,17 @@ Future // ... } }); + +- write documentation of tokenizer/parser methods + +- HTML and CSS stuff + + String width = 12px; + String div =
+

Example of Embedded HTML

+
; + + by default it will parsed as `String`, but it may be handled by Plugins. \ No newline at end of file