X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=rconv.js;h=f40a58905440905fe06efa3479634fa10231b98e;hp=9454c0a6baceaac294945f72078e7321ea5b6206;hb=HEAD;hpb=7f69f784a104c532c08ae3e692b0ff72f361f2b5 diff --git a/rconv.js b/rconv.js index 9454c0a..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.. * * */ @@ -32,7 +34,8 @@ var tr = new TokenReader( { keepComments : true, sepIdents : false, collapseWhite : true, - filename : args[0] + filename : args[0], + ignoreBadGrammer: true }); var str = File.read(args[0]) @@ -41,12 +44,20 @@ var toks = tr.tokenize(new TextStream(str)); var rf = new RooFile(toks); -//print(JSON.stringify(rf.tokens, null,4)); +//print(JSON.stringify(rf.tokens, null,4));Seed.quit(); + + + + rf.parse(); +print("------------ in ------------------"); +print(str); +print("------------ out ------------------"); + print(JSON.stringify(rf.cfg, null,4)); print("------------ was ------------------"); -print(File.read(args[0].replace(/\.js/,'.bjs'))); +print(File.read(args[0].replace(/\.js$/,'.bjs')));