From: Jay Freeman (saurik) Date: Tue, 13 Jul 2010 09:09:04 +0000 (+0000) Subject: A typo in ObjectLiteral kept us from parsing jQuery. X-Git-Tag: v0.9.432~7 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/496f6076504c3575ac26387c3f928faa63eae01f?ds=inline A typo in ObjectLiteral kept us from parsing jQuery. --- diff --git a/Cycript.yy.in b/Cycript.yy.in index 22a601a..b40c348 100644 --- a/Cycript.yy.in +++ b/Cycript.yy.in @@ -759,7 +759,7 @@ ElementList /* }}} */ /* 11.1.5 Object Initialiser {{{ */ ObjectLiteral - : OpenBrace PropertyNameAndValueListOpt "}" { $$ = CYNew CYObject($2); } + : Brace PropertyNameAndValueListOpt "}" { $$ = CYNew CYObject($2); } ; PropertyNameAndValueList_