]> git.saurik.com Git - cycript.git/commitdiff
Fix ;@implementation by adding it to LexSetStatement.
authorJay Freeman (saurik) <saurik@saurik.com>
Thu, 7 Jun 2012 22:50:33 +0000 (15:50 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Thu, 7 Jun 2012 22:50:33 +0000 (15:50 -0700)
Cycript.yy.in

index e8ca6b4920407559e077e02f91ab7346bd677c3d..8efb228815993ef3a6b98d02be95a39219b8252e 100644 (file)
@@ -534,8 +534,12 @@ LexNoFunction
     : { if (yychar == token::Function) yychar = token::Function_; }
     ;
 
+LexNoAtImplementation
+    : { if (yychar == token::AtImplementation) yychar = token::AtImplementation_; }
+    ;
+
 LexSetStatement
-    : LexNoBrace LexNoFunction
+    : LexNoBrace LexNoFunction LexNoAtImplementation
     ;
 /* }}} */
 /* Virtual Tokens {{{ */