]> git.saurik.com Git - cycript.git/commitdiff
Theoretically fix bug with in operators in messages.
authorJay Freeman (saurik) <saurik@saurik.com>
Sun, 23 Sep 2012 15:54:05 +0000 (08:54 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Sun, 23 Sep 2012 15:54:05 +0000 (08:54 -0700)
Cycript.yy.in

index fe1873fe13f763d346b633f53c86547433746283..7399651819b11bb23d9a8708dc99a0a3af77ffd2 100644 (file)
@@ -1466,7 +1466,7 @@ ClassProtocolListOpt
     ;
 
 ClassExpression
-    : "@implementation" LexPushInOff ClassNameOpt ClassSuperOpt ClassProtocolListOpt ClassFields ClassMessageDeclarationListOpt LexPopIn "@end" { $$ = CYNew CYClassExpression($3, $4, $5, $6, $7); }
+    : "@implementation" LexPushInOff ClassNameOpt ClassSuperOpt ClassProtocolListOpt ClassFields LexPopIn ClassMessageDeclarationListOpt "@end" { $$ = CYNew CYClassExpression($3, $4, $5, $6, $8); }
     ;
 
 ClassStatement