X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=JSDOC%2FPacker.js;h=dde208516007d2ae72fb541999c82f3a23f76135;hp=0773b69db54f662332d925482ef17b3956b3f673;hb=d5bdc9227e031e019cf0dd2a062e1db5b329974b;hpb=bc60c7999b73a9c9176d037a2b38fe4d9110556d diff --git a/JSDOC/Packer.js b/JSDOC/Packer.js index 0773b69..dde2085 100644 --- a/JSDOC/Packer.js +++ b/JSDOC/Packer.js @@ -315,7 +315,8 @@ Packer.prototype = { keepDocs :true, keepWhite : true, keepComments : true, - sepIdents : true + sepIdents : true, + collapseWhite : false }); this.timerPrint("START" + fn); @@ -335,8 +336,9 @@ Packer.prototype = { this.timerPrint("Tokenized"); //var ts = new TokenStream(toks); + //print(JSON.stringify(toks, null,4 )); Seed.quit(); var ts = new Collapse(toks); - ts.dump(); Seed.quit(); + // print(JSON.stringify(ts.tokens, null,4 )); Seed.quit(); //return;// var sp = new ScopeParser(ts); this.timerPrint("Converted to Parser"); @@ -346,7 +348,10 @@ Packer.prototype = { sp.mungeSymboltree(); this.timerPrint("Munged Sym tree"); print(sp.warnings.join("\n")); - var out = CompressWhite(sp.ts, this); + + + //var out = CompressWhite(new TokenStream(toks), this, true); // do not kill whitespace.. + var out = CompressWhite(new TokenStream(toks), this, false); this.timerPrint("Compressed"); return out;