JSDOC/Packer.js
[gnome.introspection-doc-generator] / JSDOC / Packer.js
index 5f238e0..5a21132 100644 (file)
@@ -7,7 +7,7 @@ TokenReader     = imports.TokenReader.TokenReader;
 ScopeParser     = imports.ScopeParser.ScopeParser;
 TokenStream     = imports.TokenStream.TokenStream;
 CompressWhite   = imports.CompressWhite.CompressWhite;
-Collapse = imports.CompressWhite.Collapse;
+Collapse        = imports.Collapse.Collapse;
 
 GLib = imports.gi.GLib;
 /**
@@ -71,15 +71,22 @@ Packer = function(cfg)
 {
     
     XObject.extend(this, cfg);
-    
-    if (this.srcfile) {
-        this.loadSourceFile();
+    var _this = this;
+    if (this.srcfiles && this.srcfiles.length) {
+        this.srcfiles.forEach(function(f) {
+            _this.loadSourceFile(f);
+        });
+        
     }
     
     if (!this.files) {
         throw "No Files";
     }
     
+    if cfg.
+    
+    
+    
     
     this.timer =  new Date() * 1;
     this.packAll();
@@ -90,14 +97,19 @@ Packer.prototype = {
     /**
      * @prop srcfiles {String} file containing a list of files/or classes to use.
      */
-    srcfiles : false,
+    srcfile : false,
     
     /**
      * @prop files {Array} list of files to compress (must be full path)
      */
     files : false,
     /**
-     * @prop target {String} target to write files to - must be full path.
+     * @cfg {String} target to write files to - must be full path.
+     */
+    target : '',
+    /**
+     * @cfg {Boolean} autoBuild - turn on autobuild feature (puts files in compiled directory,
+     * and enables translation toolkit.
      */
     target : '',
     /**
@@ -126,9 +138,9 @@ Packer.prototype = {
     out : '', // if no target is specified - then this will contain the result
     
     
-    loadSourceFile : function()
+    loadSourceFile : function(srcfile)
     {
-        var lines = File.read(this.srcfile).split("\n");
+        var lines = File.read(srcfile).split("\n");
         var _this = this;
         lines.forEach(function(f) {
             
@@ -315,7 +327,8 @@ Packer.prototype = {
             keepDocs :true, 
             keepWhite : true,  
             keepComments : true, 
-            sepIdents : true 
+            sepIdents : true,
+            collapseWhite : false
         });
         this.timerPrint("START" + fn);
         
@@ -335,8 +348,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 +360,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;