X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=src%2FMain.vala;h=df5d6f47bec49067dc0716459cf0485fdf26586a;hb=a8b66892c7c6bf95db7c231045b08bcd36733fa2;hp=f69d5407c9f6aed1cf4fee2c66dd706d5a0cb7f5;hpb=54d32183227a053e15b152e3162745b23d202351;p=app.Builder.js diff --git a/src/Main.vala b/src/Main.vala index f69d5407c..df5d6f47b 100644 --- a/src/Main.vala +++ b/src/Main.vala @@ -9,7 +9,7 @@ int main (string[] args) { - + new JsRender.Lang_Class(); var app = BuilderApplication.singleton( args); @@ -21,13 +21,7 @@ int main (string[] args) { }); } - if (BuilderApplication.opt_bjs_compile != null) { - - //BuilderApplication.compileBjs(); - print("compile BJS comming soon"); - - GLib.Process.exit(Posix.EXIT_SUCCESS); - } + if (BuilderApplication.opt_list_projects) { //BuilderApplication.compileBjs(); @@ -53,6 +47,8 @@ int main (string[] args) { if (cur_project == null) { GLib.error("invalid project %s, use --list-projects to show project ids",BuilderApplication.opt_compile_project); } + cur_project.scanDirs(); + } @@ -73,7 +69,29 @@ int main (string[] args) { GLib.error("missing file %s in project %s", BuilderApplication.opt_bjs_compile, cur_project.name); } //BuilderApplication.compileBjs(); - print(cur_project.toSource()); + file.loadItems(); + var str = file.toSourceCode(); + + + if (!BuilderApplication.opt_debug) { + print("%s", str); + GLib.Process.exit(Posix.EXIT_SUCCESS); + } + + // dump the node tree + file.tree.dumpProps(); + + + var str_ar = str.split("\n"); + for(var i =0;i