JSDOC/Packer.vala
authorAlan Knowles <alan@roojs.com>
Mon, 2 Nov 2015 09:33:11 +0000 (17:33 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 2 Nov 2015 09:33:11 +0000 (17:33 +0800)
JSDOC/Packer.vala

index 138f1db..2c7d606 100644 (file)
@@ -376,26 +376,26 @@ namespace JSDOC
         
         // and replace if we are generating a different language..
         
-        this.timerPrint("Tokenized");
         //var ts = new TokenStream(toks);
         //print(JSON.stringify(toks, null,4 )); Seed.quit();
         var ts = new Collapse(toks);
        // print(JSON.stringify(ts.tokens, null,4 )); Seed.quit();
         //return;//
         var sp = new ScopeParser(ts);
-        this.timerPrint("Converted to Parser");
         sp.packer = this;
         sp.buildSymbolTree();
-        this.timerPrint("Built Sym tree");
         sp.mungeSymboltree();
-        this.timerPrint("Munged Sym tree");
         print(sp.warnings.join("\n"));
-        this.timerPrint("Compressed");
         
         var out = CompressWhite(new TokenStream(toks), this, this.keepWhite); // do not kill whitespace..
         
         
-        this.timerPrint("Compressed");
+        
         
          if (out.length) {
             File.write(minfile, out);