From: Jay Freeman (saurik) Date: Sun, 23 Sep 2012 15:54:05 +0000 (-0700) Subject: Theoretically fix bug with in operators in messages. X-Git-Tag: v0.9.500%b1~124 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/43ef65b6e8d957c81dfee4598d748457cdd9ba84?ds=sidebyside Theoretically fix bug with in operators in messages. --- diff --git a/Cycript.yy.in b/Cycript.yy.in index fe1873f..7399651 100644 --- a/Cycript.yy.in +++ b/Cycript.yy.in @@ -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