]> git.saurik.com Git - cycript.git/blobdiff - Cycript.yy.in
Avoid error caused by passing -pthread to libtool.
[cycript.git] / Cycript.yy.in
index d963589e56257ad6c5a1d3d57d37be5d9bbda64d..29a375548ad86be029b461a6eb56bf59fbe53510 100644 (file)
@@ -473,7 +473,9 @@ int cylex(YYSTYPE *, CYLocation *, void *);
 %type <statement_> VariableStatement
 %type <statement_> WithStatement
 %type <word_> Word
+@begin ObjectiveC
 %type <word_> WordOpt
+@end
 %type <expression_> Variable
 
 @begin C
@@ -658,10 +660,12 @@ Word
     | "with" { $$ = $1; }
     ;
 
+@begin ObjectiveC
 WordOpt
     : Word { $$ = $1; }
     | { $$ = NULL; }
     ;
+@end
 
 IdentifierType
     : Identifier_ { $$ = $1; }