From: Jay Freeman (saurik) Date: Tue, 21 Jan 2014 13:53:59 +0000 (-0800) Subject: Replace AtEncode in grammar with "@encode" token. X-Git-Tag: v0.9.500~14 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/3fc53550b37bd61d5e4fde77f71c71976b105041 Replace AtEncode in grammar with "@encode" token. --- diff --git a/Cycript.yy.in b/Cycript.yy.in index c8a1862..8368f81 100644 --- a/Cycript.yy.in +++ b/Cycript.yy.in @@ -1470,7 +1470,7 @@ EncodedType ; PrimaryExpression - : AtEncode "(" EncodedType ")" { $$ = $3; } + : "@encode" "(" EncodedType ")" { $$ = $3; } ; /* }}} */ /* Cycript (Objective-C): @class Declaration {{{ */