From 9ffe574717abbc917720ab0ba615420a9b9eee0b Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 2 Nov 2015 17:27:56 +0800 Subject: [PATCH] JSDOC/Packer.vala --- JSDOC/Packer.vala | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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 { -- 2.39.2