JSDOC/Packer.vala
authorAlan Knowles <alan@roojs.com>
Wed, 25 Nov 2015 08:54:51 +0000 (16:54 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 25 Nov 2015 08:54:51 +0000 (16:54 +0800)
JSDOC/Packer.vala

index fd3d634..219aefe 100644 (file)
@@ -105,7 +105,7 @@ namespace JSDOC
                public string activeFile = "";
                
                
-               public  string out = ""; // if no target is specified - then this will contain the result
+               public  string outstr = ""; // if no target is specified - then this will contain the result
     
                public Packer(string target, string targetDebug = "")
                {
@@ -337,8 +337,8 @@ namespace JSDOC
                                        this.targetStream.write((str + "\n").data); 
 
                            } else {
-                               this.out += "//" + file + "\n";
-                               this.out += str + "\n";
+                               this.outstr += "//" + file + "\n";
+                               this.outstr += str + "\n";
                            }
                            
                        }
@@ -412,7 +412,7 @@ namespace JSDOC
                                 
                        }
                
-                       return out;
+                       return this.outstr;