From: Alan Knowles Date: Mon, 2 Nov 2015 09:27:56 +0000 (+0800) Subject: JSDOC/Packer.vala X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=commitdiff_plain;h=9ffe574717abbc917720ab0ba615420a9b9eee0b JSDOC/Packer.vala --- diff --git a/JSDOC/Packer.vala b/JSDOC/Packer.vala index 3976e18..11f36fd 100644 --- a/JSDOC/Packer.vala +++ b/JSDOC/Packer.vala @@ -64,11 +64,14 @@ namespace JSDOC * @cfg {String} target to write files to - must be full path. */ string target; + FileOutputStream targetStream = null; /** * @cfg {String} debugTarget target to write files debug version to (uncompacted)- must be full path. */ string targetDebug; - + + + FileOutputStream targetDebugStream = null; /** * @cfg {String} tmpDir (optional) where to put the temporary files. * if you set this, then files will not be cleaned up @@ -117,8 +120,7 @@ namespace JSDOC this.files.add(f); //?? easier way? } } - FileOutputStream targetStream = null; - FileOutputStream targetDebugStream = null; + public void pack() { @@ -321,6 +323,8 @@ namespace JSDOC print("using MIN FILE "+ minfile); if (str.length) { if (this.target) { + this.debugTarget.write(file_contents); + File.append(this.target, '//' + file + "\n"); File.append(this.target, str + "\n"); } else {