]> git.saurik.com Git - cycript.git/blobdiff - libcycript.cy
Do not output an empty comment for an empty stack.
[cycript.git] / libcycript.cy
index da34baa127d021427b01cf1676c8d5e1f1665d28..45caaf2ff15d75e34e8d771833af76d2e02bda82 100644 (file)
@@ -62,8 +62,12 @@ $cy_set(Error.prototype, {
                 stack = stack.slice(0, -1);
             for (let i = 0; i != stack.length; ++i)
                 stack[i] = '\n    ' + stack[i];
-            stack = stack.join('');
-            stack = ` /*${stack} */`;
+            if (stack.length == 0)
+                stack = '';
+            else {
+                stack = stack.join('');
+                stack = ` /*${stack} */`;
+            }
         }
         return `new ${this.constructor.name}(${this.message.toCYON()})${stack}`;
     },
@@ -118,7 +122,6 @@ Java.emit = function(event) {
 };
 
 Java.on('setup', function() {
-    system.print("JVM\n");
     $cy_set(java.lang.Boolean.prototype, {
         toCYON: function() {
             return `new java.lang.Boolean(${this->value})`;