X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=JSDOC%2FPacker.vala;h=1f0ac7cc8446ff13640a5df671f3e12e634aa44d;hb=cc935efc3f7afc2b006802fc8e53ce6f2f49996c;hp=a17702c8b5a975db7df59ecd6699137baade84df;hpb=e5f9409d8af82111b178765c53dbf6708cb28488;p=gnome.introspection-doc-generator diff --git a/JSDOC/Packer.vala b/JSDOC/Packer.vala index a17702c..1f0ac7c 100644 --- a/JSDOC/Packer.vala +++ b/JSDOC/Packer.vala @@ -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 { @@ -312,13 +313,16 @@ namespace JSDOC } } - //print("Output file: " + this.target); + if (this.target.length > 0 ) { + print("Output file: " + this.target); + } if (this.targetDebug.length > 0) { print("Output debug file: %s\n" , this.targetDebug); - } else { - + } + + if (this.outstr.length > 0 ) { + print(this.outstr); } - @@ -370,8 +374,9 @@ namespace JSDOC sp.mungeSymboltree(); sp.printWarnings(); //print(sp.warnings.join("\n")); - - + + 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..