]> git.saurik.com Git - cycript.git/blobdiff - ObjectiveC/Syntax.hpp
Make lexer start a comment with #! (for scripts).
[cycript.git] / ObjectiveC / Syntax.hpp
index 4c15344da5a4265c5889a51f370957d1ac1d5e0f..e04f71d38a8732675685ee199c4ce4184f65413b 100644 (file)
@@ -113,13 +113,11 @@ struct CYSelector :
 struct CYField :
     CYNext<CYField>
 {
-    CYExpression *type_;
-    CYIdentifier *name_;
+    CYTypedIdentifier *typed_;
 
-    CYField(CYExpression *type, CYIdentifier *name, CYField *next = NULL) :
+    CYField(CYTypedIdentifier *typed, CYField *next = NULL) :
         CYNext<CYField>(next),
-        type_(type),
-        name_(name)
+        typed_(typed)
     {
     }