]> git.saurik.com Git - cycript.git/blobdiff - Library.mm
Docuemented some precedence rules (going to target a more normalized parser).
[cycript.git] / Library.mm
index 61edf639dc6653952bbb5c40450d3f18d8be5c27..b4eb9f5bab86c6314bce466e5a670712295463ef 100644 (file)
@@ -188,8 +188,7 @@ JSObjectRef CYMakeObject(JSContextRef context, id object) {
 
 - (NSString *) cy$toJSON {
     NSMutableString *json([[[NSMutableString alloc] init] autorelease]);
-    [json appendString:@"("];
-    [json appendString:@"{"];
+    [json appendString:@"({"];
 
     bool comma(false);
     for (id key in self) {