X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/00b4cb83ba50bc0dcd209dfde3b99836ae8b7666..2ca4dab349cc3f91032b17ced6b76023b4e67115:/Cycript.yy.in diff --git a/Cycript.yy.in b/Cycript.yy.in index d963589..29a3755 100644 --- a/Cycript.yy.in +++ b/Cycript.yy.in @@ -473,7 +473,9 @@ int cylex(YYSTYPE *, CYLocation *, void *); %type VariableStatement %type WithStatement %type Word +@begin ObjectiveC %type WordOpt +@end %type Variable @begin C @@ -658,10 +660,12 @@ Word | "with" { $$ = $1; } ; +@begin ObjectiveC WordOpt : Word { $$ = $1; } | { $$ = NULL; } ; +@end IdentifierType : Identifier_ { $$ = $1; }