X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=rconv.js;h=f40a58905440905fe06efa3479634fa10231b98e;hp=61c1281375e8121b55dc0b92ebfa6dcdeca9b15a;hb=HEAD;hpb=2132115cc410b4b9d42220c94fbef666f43a5bf9 diff --git a/rconv.js b/rconv.js index 61c1281..f40a589 100644 --- a/rconv.js +++ b/rconv.js @@ -2,7 +2,9 @@ * * This is a test file to convert appbuilder style application code * into javascript structures. - * + * + * + * Needs to test a while directory convert to-><-from and compare.. * * */ @@ -21,28 +23,41 @@ var args = Array.prototype.slice.call(Seed.argv); args.shift(); args.shift(); -print(JSON.stringify(args, null,4)); +//print(JSON.stringify(args, null,4)); //Seed.quit(); var tr = new TokenReader( { - keepDocs :false, - keepWhite : false, - keepComments : false, + keepDocs :true, + keepWhite : true, + keepComments : true, sepIdents : false, collapseWhite : true, - filename : args[0] + filename : args[0], + ignoreBadGrammer: true }); var str = File.read(args[0]) var toks = tr.tokenize(new TextStream(str)); -print(JSON.stringify(toks, null,4)); var rf = new RooFile(toks); +//print(JSON.stringify(rf.tokens, null,4));Seed.quit(); + + + rf.parse(); -print(JSON.stringify(rf.cfg, null,4)); \ No newline at end of file +print("------------ in ------------------"); +print(str); +print("------------ out ------------------"); + +print(JSON.stringify(rf.cfg, null,4)); + +print("------------ was ------------------"); + +print(File.read(args[0].replace(/\.js$/,'.bjs'))); +