JSDOC/Packer.vala
[gnome.introspection-doc-generator] / JSDOC / Packer.vala
index c3a8026..822e073 100644 (file)
@@ -290,7 +290,7 @@ namespace JSDOC
                        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;
                        }
@@ -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 {
@@ -376,7 +376,7 @@ namespace JSDOC
                        //print(sp.warnings.join("\n"));
 
                
-                       var outf = CompressWhite(new TokenStream(toks.tokens), this, this.keepWhite); // do not kill whitespace..
+                       var outf = CompressWhite(new TokenStream(ts.toArray()), this, this.keepWhite); // do not kill whitespace..
                
                        
                        print("RESULT: \n %s\n", outf);