]> git.saurik.com Git - cycript.git/blobdiff - Cycript.yy.in
Fix pointer crashes and round-trip const void *.
[cycript.git] / Cycript.yy.in
index c8a18629aa0a2d8bc749b0389e8bbc8a123f93cb..f4c1ffdba1aad2dcae78ad26b2554eed51d5860e 100644 (file)
@@ -1449,7 +1449,7 @@ IntegerType
 
 IntegerTypeOpt
     : IntegerType { $$ = $1; }
-    |
+    | { $$ = CYNew CYTypeVariable("int"); }
     ;
 
 PrimitiveType
@@ -1470,7 +1470,7 @@ EncodedType
     ;
 
 PrimaryExpression
-    : AtEncode "(" EncodedType ")" { $$ = $3; }
+    : "@encode" "(" EncodedType ")" { $$ = $3; }
     ;
 /* }}} */
 /* Cycript (Objective-C): @class Declaration {{{ */