JSDOC/TokenReader.js
[gnome.introspection-doc-generator] / JSDOC / Packer.vala
index 438b2a1..b6d7e28 100644 (file)
@@ -283,15 +283,15 @@ namespace JSDOC
                    }
                    
                  
-                   print("MERGING SOURCE");
+                   print("MERGING SOURCE\n");
                    
                    for(var i=0; i < this.files.size; i++)  {
                        var file = this.files[i];
                        var minfile = this.tmpDir + "/" + file.replace("/", ".");
                        
                        
-                       if ( FileUtils.test(minfile, FileTest.EXISTS)) {
-                               print("skipping source %s - does not exist", minfile);
+                       if ( !FileUtils.test(minfile, FileTest.EXISTS)) {
+                               print("skipping source %s - does not exist\n", minfile);
                            continue;
                        }
                        string str;
@@ -299,7 +299,7 @@ namespace JSDOC
                        print("using MIN FILE  %s\n", minfile);
                        if (str.length > 0) {
                            if (this.targetStream != null) {
-                                       this.targetStream.write(("//" + file + "\n").data); 
+                                       this.targetStream.write(("// " + file + "\n").data); 
                                        this.targetStream.write((str + "\n").data); 
 
                            } else {
@@ -374,8 +374,8 @@ namespace JSDOC
                        sp.mungeSymboltree();
                        sp.printWarnings();
                        //print(sp.warnings.join("\n"));
-
-               
+                       //(new TokenStream(toks.tokens)).dumpAll(""); GLib.Process.exit(1);
+                       // compress works on the original array - in theory the replacements have already been done by now 
                        var outf = CompressWhite(new TokenStream(toks.tokens), this, this.keepWhite); // do not kill whitespace..