JSDOC/Packer.vala
[gnome.introspection-doc-generator] / JSDOC / Packer.vala
index 3e2005f..62ac749 100644 (file)
@@ -283,14 +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)) {
+                       if ( !FileUtils.test(minfile, FileTest.EXISTS)) {
+                               print("skipping source %s - does not exist\n", minfile);
                            continue;
                        }
                        string str;
@@ -298,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 {
@@ -373,8 +374,9 @@ 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..