X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/217246731b8e62c9a6715db96fd0c752c879d7fa..f6fa3c2112ee8b0aa26ab0765674601a9800db77:/Cycript.yy.in diff --git a/Cycript.yy.in b/Cycript.yy.in index 2c8125e..3a31f1e 100644 --- a/Cycript.yy.in +++ b/Cycript.yy.in @@ -161,6 +161,7 @@ int cylex(YYSTYPE *, cy::location *, void *); @begin E4X ObjectiveC %token At "@" +%token Pound "#" @end %token Ampersand "&" @@ -1664,7 +1665,7 @@ PrimaryExpression /* }}} */ /* Cycript (Objective-C): Instance Literals {{{ */ PrimaryExpression - : "^" NumericLiteral { $$ = CYNew CYInstanceLiteral($2); } + : "#" NumericLiteral { $$ = CYNew CYInstanceLiteral($2); } ; /* }}} */ @end