src/JsRender/NodeToJs.vala
authorAlan Knowles <alan@roojs.com>
Fri, 19 Jun 2015 05:14:35 +0000 (13:14 +0800)
committerAlan Knowles <alan@roojs.com>
Fri, 19 Jun 2015 05:14:35 +0000 (13:14 +0800)
src/JsRender/NodeToJs.vala

index 6063b89..acb5821 100644 (file)
@@ -301,8 +301,8 @@ public class JsRender.NodeToJs : Object {
        public void addLine(string str= "")
        {
                this.cur_line ++;
-               this.ret += str+ "\n";
-               
+               //this.ret += str+ "\n";
+               this.ret +=  "/*%d*/ ".printf(this.cur_line) + str + "\n";
                
                
        }