]> git.saurik.com Git - cycript.git/blobdiff - Cycript.yy.in
Generalize and centralize cpr flag conflict check.
[cycript.git] / Cycript.yy.in
index 3a31f1ebbe797f220e5cf17bb7123ecc846eb4fb..2c8125ea37c1a0d663f4968f62082dfbc1ac1af5 100644 (file)
@@ -161,7 +161,6 @@ int cylex(YYSTYPE *, cy::location *, void *);
 
 @begin E4X ObjectiveC
 %token At "@"
-%token Pound "#"
 @end
 
 %token Ampersand "&"
@@ -1665,7 +1664,7 @@ PrimaryExpression
 /* }}} */
 /* Cycript (Objective-C): Instance Literals {{{ */
 PrimaryExpression
-    : "#" NumericLiteral { $$ = CYNew CYInstanceLiteral($2); }
+    : "^" NumericLiteral { $$ = CYNew CYInstanceLiteral($2); }
     ;
 /* }}} */
 @end