X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/d3941d9fccfddc1359ac45fa2093d2b7fe3a94af..322286dd48cfe4c3b9eff66583931e89038e4ba4:/Parser.ypp.in?ds=sidebyside diff --git a/Parser.ypp.in b/Parser.ypp.in index cd605d5..21db450 100644 --- a/Parser.ypp.in +++ b/Parser.ypp.in @@ -330,6 +330,7 @@ _finline int yylex(cy::parser::semantic_type *semantic, CYLocation *location, CY %token _return__ "!return" %token _super_ "super" %token _switch_ "switch" +%token _target_ "target" %token _this_ "this" %token _throw_ "throw" %token _try_ "try" @@ -849,6 +850,7 @@ IdentifierType | "public" { $$ = CYNew CYIdentifier("public"); } | "set" { $$ = CYNew CYIdentifier("set"); } | "synchronized" { $$ = CYNew CYIdentifier("synchronized"); } + | "target" { $$ = CYNew CYIdentifier("target"); } | "throws" { $$ = CYNew CYIdentifier("throws"); } | "transient" { $$ = CYNew CYIdentifier("transient"); } | "undefined" { $$ = CYNew CYIdentifier("undefined"); }